Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 894 Bytes

cancel-payment-by-idempotency-key-response.md

File metadata and controls

38 lines (29 loc) · 894 Bytes

Cancel Payment by Idempotency Key Response

Defines the response returned by CancelPaymentByIdempotencyKey. On success, errors is empty.

Structure

CancelPaymentByIdempotencyKeyResponse

Fields

Name Type Tags Description Getter
Errors List<Error> Optional Any errors that occurred during the request. List getErrors()

Example (as JSON)

{
  "errors": [
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "MAP_KEY_LENGTH_TOO_LONG",
      "detail": "detail6",
      "field": "field4"
    },
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "MAP_KEY_LENGTH_TOO_LONG",
      "detail": "detail6",
      "field": "field4"
    }
  ]
}