curl --request GET \
--url https://api.paygentic.io/v0/products \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"object": "product",
"name": "<string>",
"description": "<string>",
"merchantId": "<string>",
"metadata": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}
curl --request GET \
--url https://api.paygentic.io/v0/products \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"object": "product",
"name": "<string>",
"description": "<string>",
"merchantId": "<string>",
"metadata": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Filter products by merchant organization ID
Number of products to return
1 <= x <= 100
Number of products to skip
x >= 0
List of products
The response is of type object
.