Authorization
Last updated
Was this helpful?
Was this helpful?
curl --location --request POST 'https://auth.flagship.io/{ACCOUNT_ID}/token?expires_in=0' \
--header 'Content-Type: application/json' \
--data-raw '{
"grant_type": "client_credentials",
"scope": "*",
"client_id": "{CLIENT_ID}",
"client_secret": "{CLIENT_SECRET}"
}'curl --location --request GET 'https://auth.flagship.io/token?access_token={ACCESS_TOKEN}' \
--data-raw ''