Home

Authentication

The Synaccess Cloud API uses API keys to authenticate requests. Manage API keys in the cloud.synaccess.com dashboard.

Make sure to keep your API keys secure. Include the API keys generated through the cloud.synaccess.com dashboard in your requests using the Bearer method.

  1. Once you have logged in, navigate to Settings -> Security

  2. Select button Create Token, and create a description to differentiate token.

  3. Copy the token text and use for access.

1151

Example Request with bearer token

curl --request GET \
     --url https://cloud.synaccess.com/v1/devices \
     --header 'accept: application/json' \
     --header 'authorization: Bearer COPY_PASTED_TOKEN_HERE'