GET
/
catalogs
/
products
curl --request GET \
  --url http://localhost:3000/connect/v1/catalogs/products/ \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": "<string>",
      "premiums": "<string>",
      "is_active": "<string>",
      "updated_on": "2023-11-07T05:31:56Z",
      "created_on": "2023-11-07T05:31:56Z",
      "name": "<string>",
      "description": "<string>",
      "image": "<string>",
      "creator": "<string>",
      "updater": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

name
string

Filter products by name.

description
string

Filter products by description.

updated_after
number

Filter products updated after a specified timestamp.

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

Response

200 - application/json
count
integer
required

The total count of products in the response.

results
object[]
required

An array containing details of products returned in the response.

next
string | null

The URI for the next page of results, if available.

previous
string | null

The URI for the previous page of results, if available.