POST
/
v1
/
oauth2
/
token
curl --request POST \
  --url https://api.zebedee.io/v1/oauth2/token \
  --header 'Content-Type: application/json' \
  --data '{
  "client_id": "<string>",
  "client_secret": "<string>",
  "grant_type": "<string>",
  "redirect_uri": "<string>",
  "refresh_token": "<string>"
}'

Description

In order to fetch a new accessToken for a given ZBD User, make sure to use the refreshToken using the token endpoint.

Configuration

Header Parameters

Content-Type
string

Content Type

Body

client_id
string
required
client_secret
string
required
grant_type
string
required
redirect_uri
string
required
refresh_token
string
required