List all network tokens.
cURL
curl --request GET \ --url https://{cluster_id}.on-hellgate.cloud/api/network/tokens \ --header 'x-api-key: <api-key>'
{ "data": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "card": { "cardholder_name": "John Doe", "expiry_month": 12, "expiry_year": 2025, "masked_account_number": "411111******1111", "scheme": "visa" }, "created_at": "2023-10-01T12:00:00Z", "network_token": { "status": "active", "type": "vts" } } ], "links": { "next": "https://my-cluster-id.on-hellgate.cloud/network/tokens?after=123e4567-e89b-12d3-a456-426614174000&limit=20" } }
The limit parameter defines the maximum number of rows returned in a single call and enables consecutive pagination using the next link provided in the response payload.
next
1 <= x <= 100
Success response
Show child attributes