Authentication
The API uses OAuth 2.0 Client Credentials Flow (OIDC).
Token Endpoint
POST https://identity-v2.metaforce.net/connect/tokenRequired Parameters
| Name | Type | Value |
|---|---|---|
| grant_type | string | client_credentials |
| client_id | string | Your client ID |
| client_secret | string | Your client secret |
| scope | string | api.external |
Example Response
{
"access_token": "...",
"expires_in": 3600,
"token_type": "Bearer"
}Use in header:
Authorization: Bearer <access_token>