For the complete documentation index, see llms.txt. This page is also available as Markdown.

Refresh your access token

After one hour, you will need to update your token in your integrations. To do this, use the refresh token obtained in the previous call.

Refresh your access token

POST https://api.zapsign.com.br/api/v1/auth/token-refresh/

Get a new JWT access token with increased expiration time

Request Body

Request Body

{
    "refresh": "The_refresh_field_returned_in_Get_acess_token"
}
{
    "access": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"
}
{
    "detail": "Token is invalid or expired",
    "code": "token_not_valid"
}

Last updated

Was this helpful?