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

# List requirement statuses for all options of an offer



## OpenAPI

````yaml /api-reference/openapi.json get /v1/offers/{offer_id}/requirements/statuses
openapi: 3.0.0
info:
  title: Frontline API
  version: 0.1.0
servers:
  - url: https://api.coinlist.co
    variables: {}
security: []
tags:
  - name: DocumentSubmissions
  - name: KYC
  - name: OAuth
  - name: Offers
  - name: Participations
  - name: Pii
  - name: Requirements
  - name: Swap
  - name: Token
  - name: Wallet
  - name: Wallet Ownership
paths:
  /v1/offers/{offer_id}/requirements/statuses:
    get:
      tags:
        - Requirements
      summary: List requirement statuses for all options of an offer
      operationId: listOfferRequirementStatuses
      parameters:
        - description: The offer ID
          in: path
          name: offer_id
          required: true
          schema:
            type: string
            x-struct: null
            x-validate: null
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RequirementStatuses'
          description: Successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Error response.
      callbacks: {}
      security:
        - OAuth2: []
components:
  schemas:
    RequirementStatuses:
      properties:
        object:
          description: >-
            String representing the object's type. Objects of the same type
            share the same value.
          enum:
            - requirement_statuses
          type: string
          x-struct: null
          x-validate: null
        offer_id:
          description: The offer ID
          type: string
          x-struct: null
          x-validate: null
        statuses:
          additionalProperties:
            anyOf:
              - enum:
                  - not_started
                  - in_progress
                  - action_needed
                  - completed
                  - rejected
                type: string
                x-struct: null
                x-validate: null
              - description: >-
                  Object form, used when the status carries extra data: the
                  action-needed reason and/or the Sumsub flow that resolves the
                  requirement (kyc_level + kyc_reset, to be sent to the
                  kyc-token endpoint as-is).
                properties:
                  action:
                    enum:
                      - kyc_not_verified
                      - update_pii_data
                    type: string
                    x-struct: null
                    x-validate: null
                  kyc_level:
                    description: >-
                      The Sumsub verification level that resolves this
                      requirement
                    enum:
                      - Sorting_KYC_Level
                      - BasicKYCLevel
                      - AccreditationIndividual_FullVerification
                    type: string
                    x-struct: null
                    x-validate: null
                  kyc_reset:
                    description: >-
                      Whether the Sumsub applicant must be reset before starting
                      the flow (redoing an already-approved level, e.g. to
                      update stale PII)
                    type: boolean
                    x-struct: null
                    x-validate: null
                  status:
                    enum:
                      - not_started
                      - in_progress
                      - action_needed
                      - completed
                      - rejected
                    type: string
                    x-struct: null
                    x-validate: null
                required:
                  - status
                type: object
                x-struct: null
                x-validate: null
            x-struct: null
            x-validate: null
          description: Map of requirement ID to status
          type: object
          x-struct: null
          x-validate: null
      required:
        - object
        - offer_id
        - statuses
      title: RequirementStatuses
      type: object
      x-struct: Elixir.FrontlineAPIWeb.OpenApi.Schemas.RequirementStatuses
      x-validate: null
    Error:
      additionalProperties: false
      properties:
        code:
          description: A human-readable message providing more details about the error.
          type: string
          x-struct: null
          x-validate: null
        errors:
          additionalProperties:
            items:
              type: string
              x-struct: null
              x-validate: null
            type: array
            x-struct: null
            x-validate: null
          type: object
          x-struct: null
          x-validate: null
        event_id:
          description: >-
            The unique identifier for the error event. This is useful for
            tracking and debugging.
          type: string
          x-struct: null
          x-validate: null
        message:
          description: >-
            For some errors that could be handled programmatically, a short
            string indicating the error code reported.
          type: string
          x-struct: null
          x-validate: null
        type:
          description: >-
            The type of error returned. One of `api_error`,
            `invalid_request_error`
          enum:
            - api_error
            - invalid_request_error
          type: string
          x-struct: null
          x-validate: null
      required:
        - type
        - message
      title: Error
      type: object
      x-struct: Elixir.FrontlineAPIWeb.OpenApi.Schemas.ApiError
      x-validate: null
  securitySchemes:
    OAuth2:
      description: OAuth 2.0 authorization and token endpoints
      flows:
        authorizationCode:
          authorizationUrl: /oauth/authorize
          refreshUrl: /oauth/token
          scopes: {}
          tokenUrl: /oauth/token
        clientCredentials:
          refreshUrl: /oauth/token
          scopes: {}
          tokenUrl: /oauth/token
      type: oauth2

````