Apache OFBiz · Example Payload

Apache Ofbiz Token Response Example

ERPCRME-CommerceBusiness ApplicationsApacheJavaOpen SourceSupply Chain

Apache Ofbiz Token Response Example is an example object payload from Apache OFBiz, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

statusCodestatusDescriptionsuccessMessagedata

Example Payload

Raw ↑
{
  "statusCode": 200,
  "statusDescription": "OK",
  "successMessage": "Token granted.",
  "data": {
    "access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiJ9.example",
    "token_type": "Bearer",
    "expires_in": "1800",
    "refresh_token": "dGhpc19pc19hX3JlZnJlc2hfdG9rZW4"
  }
}