Apache OFBiz · Schema

RefreshRequest

Request body for token refresh.

ERPCRME-CommerceBusiness ApplicationsApacheJavaOpen SourceSupply Chain

Properties

Name Type Description
refresh_token string The refresh token previously issued by /auth/token.
View JSON Schema on GitHub

JSON Schema

apache-ofbiz-refresh-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ofbiz/refs/heads/main/json-schema/apache-ofbiz-refresh-request-schema.json",
  "title": "RefreshRequest",
  "description": "Request body for token refresh.",
  "type": "object",
  "properties": {
    "refresh_token": {
      "type": "string",
      "description": "The refresh token previously issued by /auth/token.",
      "example": "dGhpc19pc19hX3JlZnJlc2hfdG9rZW4"
    }
  },
  "required": [
    "refresh_token"
  ]
}