Authentication

The API uses OAuth 2.0 Client Credentials Flow (OIDC).

Token Endpoint

POST https://identity-v2.metaforce.net/connect/token

Required Parameters

NameTypeValue
grant_typestringclient_credentials
client_idstringYour client ID
client_secretstringYour client secret
scopestringapi.external

Example Response

{
  "access_token": "...",
  "expires_in": 3600,
  "token_type": "Bearer"
}

Use in header:

Authorization: Bearer <access_token>