Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 702 Bytes

revoke-token-response.md

File metadata and controls

30 lines (22 loc) · 702 Bytes

Revoke Token Response

Structure

RevokeTokenResponse

Fields

Name Type Tags Description Getter Setter
success ?bool Optional If the request is successful, this is true. getSuccess(): ?bool setSuccess(?bool success): void
errors ?(Error[]) Optional Any errors that occurred during the request. getErrors(): ?array setErrors(?array errors): void

Example (as JSON)

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