- Lists merchant API keys
Lists merchants
Creates a merchant API key
Revokes a merchant API key
Lists merchant API keys
GET {{baseURL}}/pay-api/v1/merchants/tokens
This endpoint lists merchant API keys created for merchants under a partner account.
The query parameter filter may be used to further specify API keys to return.
This endpoint requires the API token to be from a partner API key. API tokens generated from a merchant key are not accepted.
See Also:
To list merchants, see GET /pay-api/v1/merchants.
To create a merchant API key, see POST /pay-api/v1/merchants/tokens.
To revoke a merchant API key, see DELETE /pay-api/v1/merchants/tokens/{clientId}.
Security
Bearer
- Mock serverhttps://developer.flute.com/_mock/api-reference/pay-api/v1/merchants/tokens
- Sandbox environmenthttps://sandbox.api.flute.com/pay-api/v1/merchants/tokens
- Production environmenthttps://api.flute.com/pay-api/v1/merchants/tokens
curl -i -X GET \
'https://developer.flute.com/_mock/api-reference/pay-api/v1/merchants/tokens?merchantId=46063d32-10fa-44cb-b118-20ddd085ce3f' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
{ "tokens": [ { "merchantId": "fae7620d-ab02-4375-bc20-6ff326b917fd", "tokenName": "Peppared Street Cafe's API Key", "clientId": "3b87fab4-5be4-44d3-9070-5f6ec1dfcbf5", "creationDate": "2026-02-19T20:24:52.934Z" } ] }