GET
/
v1
/
products
/
getList
cURL
curl --request GET \
  --url https://dev.entropi.app/v1/products/getList \
  --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

userID
string
required

Retrieve products associated with this userID

orgID
string
required

Retrieve products associated with this orgID

Response

200
application/json

Product List

The response is of type object.