Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 588 Bytes

revoke-token-response.md

File metadata and controls

30 lines (22 loc) · 588 Bytes

Revoke Token Response

Structure

Revoke Token Response

Fields

Name Type Tags Description
success TrueClass | FalseClass Optional If the request is successful, this is true.
errors Array<Error Hash> Optional Any errors that occurred during the request.

Example (as JSON)

{
  "success": true,
  "errors": [
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "INVALID_EXPIRATION",
      "detail": "detail6",
      "field": "field4"
    }
  ]
}