Generate Access Token
Implementation Examples of Access Token Generation in Various Programming Languages
Create access token by using HMAC-SHA256
An access token can be generated by combining the api_key and timestamp string with the provided api_secret.
Attribute | Description |
| Get it from your PAVE Developer dashboard |
| Get it from your PAVE Developer dashboard |
| UTC Datetime string, example: 2021-05-30T12:49:19Z |
Examples in Different Languages:
To generate the correct token, please make sure the combination string you are using with the 1) api_key, 2) timestamp and 3) api_secret are arranged in this order.
To generate the correct token, please ensure your timestamp is using UTC Datetime. And use the matching timestamp to the one included in your header when generating your token.
Replace <username>
with the primary account name that your representative initially provided. If you have an Enterprise account, use that account name, not one of the branch account. Do not set <username) as one of the user names you created in your dashboard.
Last updated