GET
/
catalogs
/
premiums
curl --request GET \
  --url http://localhost:3000/connect/v1/catalogs/premiums/ \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": "<string>",
      "options": [
        {
          "id": "<string>",
          "updated_on": "2023-11-07T05:31:56Z",
          "created_on": "2023-11-07T05:31:56Z",
          "name": "<string>",
          "amount": 123,
          "is_active": true,
          "creator": "<string>",
          "updater": "<string>"
        }
      ],
      "updated_on": "2023-11-07T05:31:56Z",
      "created_on": "2023-11-07T05:31:56Z",
      "category": "PAYOUT",
      "name": "<string>",
      "type": "PER_TRANSACTION",
      "amount": 123,
      "included": true,
      "dependant_on_card": true,
      "applicable_activity": "BUY",
      "calculation_type": "NORMAL",
      "is_active": true,
      "creator": "<string>",
      "updater": "<string>",
      "owner": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

name
string
updated_after
number
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
results
object[]
required
next
string | null
previous
string | null