Skip to main content

Authentication

Vyro uses OAuth2 for authentication. To authenticate, you'll need to make a request to the Authentication API with your client ID and client secret. This will return an access token that you can use to authenticate your requests to the Vyro GraphQL API.

Request

curl -X POST \
"https://authentication-api.[environment-domain]/api-client/authenticate" \
-H 'Content-Type: application/json' \
-d '{
"client_id": "your-client-id",
"client_secret": "your-client-secret"
}'

Note: Replace your-client-id and your-client-secret with your actual client ID and client secret.

Note: Replace [environment-domain] with the domain for your environment.

Response

{ "access_token": "your-access-token" }