> ## Documentation Index
> Fetch the complete documentation index at: https://developer.tazapay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Cancel Collection Account Request

> Cancel a pending enablement, disablement, or reenablement request attached to a collection account.



## OpenAPI

````yaml post /v3/collection_account/{id}/{req_id}/cancel
openapi: 3.1.0
info:
  title: sandbox
  version: '3'
servers:
  - url: https://service-sandbox.tazapay.com
security:
  - sec0: []
paths:
  /v3/collection_account/{id}/{req_id}/cancel:
    post:
      summary: Cancel Collection Account Request
      description: >-
        Cancel a pending enablement, disablement, or reenablement request
        attached to a collection account.
      operationId: cancel-collection-account-request
      parameters:
        - name: id
          in: path
          description: Unique ID of the collection account.
          schema:
            type: string
          required: true
        - name: req_id
          in: path
          description: Unique ID of the request to cancel.
          schema:
            type: string
          required: true
      responses:
        '200':
          description: Collection account request cancelled successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CollectionAccountRequest'
              examples:
                Result:
                  value:
                    id: req_abc123
                    object: collection_account_request
                    collection_account_id: cva_crqinja9chqqs7moi8rg
                    type: enablement
                    status: cancelled
                    created_at: '2024-09-26T09:39:25.03501Z'
                    updated_at: '2024-09-26T09:41:43.349835Z'
                    status_description: Request cancelled by merchant.
components:
  schemas:
    CollectionAccountRequest:
      type: object
      description: >-
        An enablement, disablement, or reenablement request attached to a
        collection account.
      properties:
        id:
          type: string
          description: Unique ID of the request.
        object:
          type: string
          description: Always "collection_account_request".
        collection_account_id:
          type: string
          description: ID of the linked collection account.
        type:
          type: string
          enum:
            - enablement
            - disablement
            - reenablement
          description: Type of request.
        status:
          type: string
          enum:
            - processing
            - approval_hold
            - requires_action
            - succeeded
            - failed
            - cancelled
          description: Current status of the request.
        requested_currencies:
          type: array
          items:
            type: string
          description: >-
            Currencies requested for enablement (present on enablement
            requests).
        created_at:
          type: string
          format: date-time
          description: Timestamp when the request was created.
        updated_at:
          type: string
          format: date-time
          description: Timestamp when the request was last updated.
        status_description:
          type: string
          description: Description of the current status or failure reason.
  securitySchemes:
    sec0:
      type: http
      scheme: basic

````