Skip to main content
POST
/
api
/
v1
/
auth
/
oauth
/
token
cURL
curl --request POST \
  --url https://api.drip.re/api/v1/auth/oauth/token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "grant_type": "authorization_code",
  "redirect_uri": "<string>",
  "code": "<string>"
}'
{
  "dripId": "<string>"
}

Authorizations

Authorization
string
header
required

API Key

Body

application/json
code
string
required
grant_type
enum<string> | null
Available options:
authorization_code
redirect_uri
string | null

Response

Default Response

dripId
string