Static token

How to authenticate to the ZapSign API using a static token.

To authenticate to each endpoint is very simple.

Just insert your api_token on the "Authorization" header with the "Bearer " prefix.

Example:

  'headers': {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer c7f35c84-7893-4087-b4fb-d1f06c23'
  },

Remember to change the ficction token c7f35c84-7893-4087-b4fb-d1f06c23 for your token got on the "How to start" step.

Heads up

1- If you try to access any endpoint without entering the "Authorization" header, or enter an invalid api_token, you will receive a response with status 403 (Unauthorized).

2- Notice that all our API endpoints have a slash (/) at the end. Thus, the question mark (?) must follow after the last slash (/):

Right: https://api.zapsign.com.br/api/v1/docs/

Wrong: https://api.zapsign.com.br/api/v1/docs

Last updated