Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 940 Bytes

void-transaction-response.md

File metadata and controls

43 lines (34 loc) · 940 Bytes

Void Transaction Response

Defines the fields that are included in the response body of a request to the VoidTransaction endpoint.

Structure

VoidTransactionResponse

Fields

Name Type Tags Description
errors Error[] | undefined Optional Any errors that occurred during the request.

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"
    },
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "MAP_KEY_LENGTH_TOO_LONG",
      "detail": "detail6",
      "field": "field4"
    }
  ]
}