GET
/
v1
/
products
/
getOne
cURL
curl --request GET \
  --url https://dev.entropi.app/v1/products/getOne \
  --header 'Authorization: Bearer <token>'
{
  "result": {
    "productID": "<string>",
    "name": "<string>",
    "desc": "<string>",
    "url": "<string>",
    "orgID": "<string>",
    "userID": "<string>",
    "imageLink": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

productID
string
required

The productID to retrieve

Response

200
application/json

API Response

The response is of type object.