---
title: "CancelInstructionRequest"
url: "https://developer.pexa.co.uk/apis/instruction-v1-v1/versions/861f183b-600d-4bbf-9762-abebcbf9b5ac/schemas/CancelInstructionRequest"
---

> Full API specification: https://developer.pexa.co.uk/apis/instruction-v1-v1/versions/861f183b-600d-4bbf-9762-abebcbf9b5ac.md

# CancelInstructionRequest

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Lender Instruction
  version: v1
servers:
  - url: https://api.pexa.co.uk
    description: API Gateway URL
components:
  schemas:
    CancelInstructionRequest:
      type: object
      required:
        - cancellationReason
      properties:
        cancellationReason:
          type: string
          pattern: ^(OTHER)$
          example: OTHER
          description: |
            Reason for cancelling the instruction.

            Allowed values:
              [`OTHER`]
        cancellationNotesForOther:
          maxLength: 100
          minLength: 1
          type: string
          example: Incorrect details provided
          description: Mandatory when cancellationReason "OTHER" is provided
```
