Skip to content

return_reasons

Fields that describe the reason for the return and other metadata related to the return. These are the same fields specified in the request.

  • Is optional
  • Type: array

with following properties:

PropertyTypeRequiredDescription
typeStringOptionalType of return
codeStringOptionalISO 20022 code for the return
reasonStringOptionalISO 20022 reason for the return

JSON schema extract

{
  "type": "array",
  "description": "Fields that describe the reason for the return and other metadata related to the return. These are the same fields specified in the request.",
  "items": [
    {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "description": "Type of return ."
            },
            "code": {
              "type": "string",
              "description": "ISO 20022 code for the return ."
            },
            "reason": {
              "type": "string",
              "description": "ISO 20022 reason for the return ."
            }
          }
        }
      ]
    }
  ],
}