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

# Withdraw the whole information request

> Withdraws the current round: every open item is canceled, their fields are re-locked, and a round that was already with the applicant returns the case to review with no re-run. Values the applicant had already saved are kept (see the per-item withdraw).



## OpenAPI

````yaml https://api.dataspike.io/openapi/kyb/public.json post /webapi/v4/kyb/organization/{organizationId}/verifications/{caseId}/info-request/cancel
openapi: 3.1.0
info:
  description: Know Your Business (KYB) — case creation and the embedded onboarding widget.
  title: Dataspike KYB API
  version: '1.0'
servers: []
security: []
paths:
  /webapi/v4/kyb/organization/{organizationId}/verifications/{caseId}/info-request/cancel:
    post:
      tags:
        - KYB Remediation
      summary: Withdraw the whole information request
      description: >-
        Withdraws the current round: every open item is canceled, their fields
        are re-locked, and a round that was already with the applicant returns
        the case to review with no re-run. Values the applicant had already
        saved are kept (see the per-item withdraw).
      operationId: >-
        POST_/webapi/v4/kyb/organization/:organizationId/verifications/:caseId/info-request/cancel
      parameters:
        - description: Organization id.
          in: path
          name: organizationId
          required: true
          schema:
            type: string
        - description: KYB case id (the `id` from the list).
          in: path
          name: caseId
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: d5293a33-1d10-4aa2-8ff9-4a2c9a2d1e19
            application/xml:
              schema:
                $ref: d5293a33-1d10-4aa2-8ff9-4a2c9a2d1e19
          description: OK
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrCaseNotFound'
            application/xml:
              schema:
                $ref: '#/components/schemas/ErrCaseNotFound'
          description: Case not found.
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrRequestFinalized'
            application/xml:
              schema:
                $ref: '#/components/schemas/ErrRequestFinalized'
          description: There is no open round to withdraw.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfoRequest'
            application/xml:
              schema:
                $ref: '#/components/schemas/InfoRequest'
          description: Round withdrawn.
      security:
        - Session: []
components:
  schemas:
    ErrCaseNotFound:
      description: ErrCaseNotFound schema
      example:
        code: case_not_found
        message: Case not found
      properties:
        code:
          example: email_otp_expired
          type: string
        message:
          example: OTP has expired
          type: string
        param:
          nullable: true
          type: string
      type: object
    ErrRequestFinalized:
      description: ErrRequestFinalized schema
      example:
        code: request_finalized
        message: The information request is already finalized
      properties:
        code:
          example: email_otp_expired
          type: string
        message:
          example: OTP has expired
          type: string
        param:
          nullable: true
          type: string
      type: object
    InfoRequest:
      description: InfoRequest schema
      properties:
        case_id:
          example: 019f179b-0fa7-72c8-818e-819652540477
          type: string
        case_status:
          example: in_remediation
          type: string
        created_at:
          format: date-time
          type: string
        id:
          example: 019f179b-0fa7-72c8-818e-819652540477
          type: string
        items:
          items:
            properties:
              audience:
                enum:
                  - merchant
                example: merchant
                type: string
              canceled_at:
                format: date-time
                nullable: true
                type: string
              created_at:
                format: date-time
                type: string
              created_by:
                example: 019f1383-8f38-7d31-b921-39310a19b444
                type: string
              field_key:
                example: registration_number
                type: string
              id:
                example: 019f179b-0fa7-72c8-818e-819652540477
                type: string
              last_value:
                nullable: true
              message:
                example: The number does not match the registry, please re-enter it.
                type: string
              new_value:
                nullable: true
              request_id:
                example: 019f179b-0fa7-72c8-818e-819652540477
                type: string
              resolved_at:
                format: date-time
                nullable: true
                type: string
              section_key:
                example: registration
                type: string
              status:
                enum:
                  - open
                  - resolved
                  - canceled
                example: open
                type: string
              target_kind:
                enum:
                  - field
                  - document
                example: field
                type: string
            type: object
          type: array
        received_at:
          format: date-time
          nullable: true
          type: string
        sent_at:
          format: date-time
          nullable: true
          type: string
        status:
          enum:
            - draft
            - sent
            - received
            - canceled
          example: draft
          type: string
        widget_url:
          example: https://kyb.dataspike.io/KYB0123456789abcdef
          nullable: true
          type: string
      type: object
  securitySchemes:
    Session:
      description: Session cookie for web dashboard authentication.
      in: cookie
      name: ds-prod-session
      type: apiKey

````