cURL
curl --request GET \ --url https://{defaultHost}/v5/company/products \ --header 'Authorization: Bearer <token>'
{ "pagination": { "current_page": 123, "total_pages": 123, "next_page": 123, "prev_page": 123, "total_count": 123 }, "data": [ { "id": "<string>", "created_at": 123, "name": "<any>", "title": "<string>", "company_id": "<string>", "description": "<any>", "page_id": "<string>", "visibility": "visible" } ] }
Returns a collection of products
App API key for /v5/app and /v5/company endpoints
The page number to retrieve
The number of resources to return per page. There is a limit of 50 results per page.
products retrieved
The response is of type object.
object
Was this page helpful?