List Products

Returns a list of your products. The products are returned sorted by creation date, with the most recently created products appearing first.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/v1/products
curl https://api.paypercut.io/v1/products \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "items": [
    {
      "active": true,
      "name": "string",
      "description": "string",
      "unit_label": "string",
      "id": "string"
    }
  ],
  "last_key": "string"
}