Altruistiq · Example Payload

Altruistiq Oauth Token Example

SustainabilityClimateCarbon AccountingEmissionsGreenhouse GasScope 3Product Carbon FootprintCorporate Carbon FootprintSupply ChainFMCGFood and BeverageESGCSRDSBTiPACTSustainability Intelligence

Altruistiq Oauth Token Example is an example object payload from Altruistiq, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationrequestresponse

Example Payload

Raw ↑
{
  "operation": "POST /api/public/v1/oauth2/token",
  "request": {
    "headers": {
      "Content-Type": "application/x-www-form-urlencoded"
    },
    "body": {
      "grant_type": "client_credentials",
      "client_id": "<your-client-id>",
      "client_secret": "<your-client-secret>"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "access_token": "eyJhbGciOi...",
      "token_type": "Bearer",
      "expires_in": 3600
    }
  }
}