Skip to main content

Authentication

Upon creation of the account you will be provided with three parameters: accountId, apiKey and apiKeyId. You should store them in a secure place as those will be your API interaction credentials.

Next, you will have to create a concatenated string that will combine: accountId, apiKey and apiKeyId. Importantly, each part should be separated by the string separator: _. After creating the concatenated string you should send it in the Authorization header like this:

Authorization: ApiKey ${account.id}_${apiKey}_${apiKeyId}