curl --request POST \
--url https://api.trysynch.com/Authentication/Token \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"clientId": "<string>",
"clientSecret": "<string>"
}
'{
"accessToken": "<string>",
"tokenType": "<string>",
"expiresInSeconds": 123
}Creates a JWT token used for authentication from client credentials.
curl --request POST \
--url https://api.trysynch.com/Authentication/Token \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"clientId": "<string>",
"clientSecret": "<string>"
}
'{
"accessToken": "<string>",
"tokenType": "<string>",
"expiresInSeconds": 123
}JWT Authorization header using the Bearer scheme.
Use /auth/token to obtain access token.
Enter 'Bearer' [space] and then your token in the text input below.
Example: 'Bearer eyJhbGci...'
Was this page helpful?