client_id
and client_secret
from the Pictory sales team.curl --location --request POST 'https://dev.your-api-server.com/v1/oauth2/token' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": "{{client_id}}", //Provided by Pictory sales team. Set the value in your environment file
"client_secret": "{{client_secret}}" //Provided by Pictory sales. Set the value in your environment file
}'
{
"access_token": "<<ACCESS TOKEN>>",
"expires_in": 3600,
"token_type": "Bearer"
}