> ## 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.

# List every information request on a case

> Every remediation round ever raised on the case, oldest first, in a {data} envelope. Rounds are numbered by their position in this list — there is no round code. Use it for the case history; use GET .../info-request for the one the officer is working on now.

Items carry the same `last_value` / `new_value` fields as the current round, so a closed round shows what it actually changed. There `new_value` is frozen at the moment the ask closed rather than read live, so an edit a LATER round made is attributed to that round and not to this one.



## OpenAPI

````yaml https://api.dataspike.io/openapi/kyb/public.json get /webapi/v4/kyb/organization/{organizationId}/verifications/{caseId}/info-requests
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-requests:
    get:
      tags:
        - KYB Remediation
      summary: List every information request on a case
      description: >-
        Every remediation round ever raised on the case, oldest first, in a
        {data} envelope. Rounds are numbered by their position in this list —
        there is no round code. Use it for the case history; use GET
        .../info-request for the one the officer is working on now.


        Items carry the same `last_value` / `new_value` fields as the current
        round, so a closed round shows what it actually changed. There
        `new_value` is frozen at the moment the ask closed rather than read
        live, so an edit a LATER round made is attributed to that round and not
        to this one.
      operationId: >-
        GET_/webapi/v4/kyb/organization/:organizationId/verifications/:caseId/info-requests
      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.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfoRequestList'
            application/xml:
              schema:
                $ref: '#/components/schemas/InfoRequestList'
          description: Round history.
      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
    InfoRequestList:
      description: InfoRequestList schema
      properties:
        data:
          items:
            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
          type: array
      type: object
  securitySchemes:
    Session:
      description: Session cookie for web dashboard authentication.
      in: cookie
      name: ds-prod-session
      type: apiKey

````