The Employee Email (Classic) API is secured by
Add the API key to the Authorization header of every request as follows:
- Combine Auth ID and Access Key with a colon (:).
- Encode the resulting string using Base64.
- Prepend the encoded string with the authorization method and a space character.
For example,Basic {{insert-your-encoded-string}}
Use the https://apis.bananatag.com endpoint for our US Hosting instance, app.bananatag.com.
Use the https://apis.de.bananatag.com endpoint for our EU Hosting instance, app.de.bananatag.com.
More details on how to access our different instances.
This is a sample HTTP request:
GET /contacts HTTP/1.1Content-Type: application/jsonHost: apis.bananatag.comAuthorization: Basic XXXXXXXXXXXX
When everything worked like expected you should receive an HTTP response with the status code 200 and repsonse data. An example response could look like this:
HTTP/1.1 200 OKContent-Type: application/json
...