API Authentication
  • 2 Minutes to read
  • Dark
    Light

API Authentication

  • Dark
    Light

Article Summary

API Authentication Required

To authenticate with the API, you must be provided with the following information from your Syndigo account representative:

  1. Username
  2. Secret (URL Encoded in Request)

The API credentials are located within My Account > API Settings. See screenshots below.

image.png

After selecting API Settings, you should see the API credentials:

api_cred_blur.png{height="" width=""}(https://cdn.document360.io/381abf0c-f631-4d76-a7c0-e955ad2c7aa6/Images/Documentation/image%2825%29%281%29.png){height="" width=""}

IMPORTANT

You must have admin permissions to see the API credentials! Make sure one of your sub-accounts is privileged to see them. If you still can't see them, reach out to your Customer Success Manager or Account Executive.

Syndigo Integration APIs utilize a bearer token authentication scheme. The Secret is valid indefinitely; the tokens generated have expirations. Tokens are valid for 7 days in UAT (sandbox) to ease the process of testing and prototyping, but in production, each token is valid for 60 minutes (tiny variance possible for the potential time-skew and other caching timeouts on the servers validating it).

This makes the token validity duration to be 60 minutes plus or minus a few minutes. You must track the time you created the token and automatically refresh it to use or you can capture 401 responses and re- authenticate and retry.

The authentication token length can vary widely. This token consists of a list of claims and permissions, which then gets hashed and cryptographically signed and encoded. So, as we add permissions and claims to our system, the token gets longer. As this token is an irrevocable key, Syndigo recommends treating it with the same security measures as you would treat a password.

Note:

The bearer tokens, if exposed allows anyone to impersonate you until that token expires. Ensure you transmit bearer tokens over HTTPS.

To Retrieve a Bearer Token:

  1. Call the Auth API by providing the username and secret URL parameters:
Availabe endpoints

Production endpoint - https://api.syndigo.com
UAT endpoint - https://api.uat.syndigo.com

https://api.uat.syndigo.com/api/auth?username=YourApiUsername&secret=YourUrlEncodedSecret
2. Alternatively, you can put your username and secret in the body of a request. In the response you will get an auth token.
How to get an auth token postman.png

  1. Request a bearer token from the Auth API:
    curl -G "https://api.uat.syndigo.com/api/auth" --data-urlencode "username=YOURUSERNAME" --data- urlencode "secret=YOURSECRET"
  2. Extract the “Value” property or the bearer token from the returned JSON object.
  3. Add the bearer token to the Authorization header in subsequent requests.
  4. The Auth API includes a “test” endpoint to validate that you are correctly executing requests. The authorization scheme is “EN ”. For example, if the returned bearer token is “ABCDEFG”, the curl command to test auth would be:
    curl -H "Authorization: EN ABCDEFG" https://api.uat.syndigo.com/api/auth/test
  5. There's an option to skip appending "EN" if desired. In a response call, you will receive an attribute called "AuthHeader" that includes a token with the authorization scheme.
    Auth token with EN schema.png

Was this article helpful?

Changing your password will log you out immediately. Use the new password to log back in.
First name must have atleast 2 characters. Numbers and special characters are not allowed.
Last name must have atleast 1 characters. Numbers and special characters are not allowed.
Enter a valid email
Enter a valid password
Your profile has been successfully updated.