API Keys

Operations for affiliate API Keys

Partners have one or multiple marketplace connections with different brands / networks. For each connection, an affiliate account exists on the brand / network’s Everflow account.

The endpoint documented here allows a partner to fetch all the affiliate API keys associated with their different connections (an affiliate API key will exist for each connection).


Get All API keys

GET /v1/partners/connections/apikeys/list

This endpoint allows you to fetch the API keys associated with each connection that exsits.

The API keys returned here can then be used on the affiliate API to execute calls for a specific connection (or for all of them in a loop).

Although the endpoint returns keys for the affiliate API, a Marketplace API key must be used to make the call

cURL
curl --request GET 'https://api.eflow.team/v1/partners/connections/apikeys/list' \
--header 'X-Eflow-API-Key: <INSERT API KEY>' \
--header 'content-type: application/json' 
Response
{
  "keys": [
    {
      "advertiser_id": 1,
      "advertiser_name": "Some Brand",
      "api_key": "...."
    },
    {
      "advertiser_id": 5,
      "advertiser_name": "Some Other Brand",
      "api_key": "...."
    }
  ]
}