Access Token

Returns your access token for making API calls.

POST https://api.formdr.com/api/oauth/token

Headers

Request Body

{
    "accessToken": String,
    "accessTokenExpiresAt": DateString,
    "refreshToken": String,
    "refreshTokenExpiresAt": DateString,
    "scope": String
}

You must first get your access token and attach this access token as a bearer token to all of your calls.

Due to security protocols, access tokens have a limited lifespan.

Test Keys

After you're ready, and upon approval, we will enable access for you to create an app which can be used for testing. You'll know if you are still in testing if you are given "TEST" keys when making the call to get your access tokens.

Last updated