Skip to main content
POST
/
authenticate
/
service-account
Authenticate a service using a service account ID token
curl --request POST \
  --url https://auth.platform.arb.inc/authenticate/service-account \
  --header 'Content-Type: application/json' \
  --data '
{
  "id_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6Ij..."
}
'
{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "valid_for_seconds": 3600
}

Body

application/json
id_token
string
required

Google-issued ID token for the service account.

Example:

"eyJhbGciOiJSUzI1NiIsImtpZCI6Ij..."

Response

Access token successfully issued.

access_token
string

The generated access token for the authenticated session.

Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

valid_for_seconds
integer

Token validity duration in seconds.

Example:

3600