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

# Get RFI detail with comment history



## OpenAPI

````yaml openapi/partner-openapi.yaml get /v1/onboarding/partner/applications/{applicationId}/rfis/{rfiId}
openapi: 3.1.0
info:
  description: >
    Partner-facing API for programmatic onboarding. Use these endpoints to
    create and

    manage onboarding applications on behalf of your customers, submit sections
    of data,

    upload supporting documents, and respond to Requests for Information (RFIs).


    ## Authentication

    All endpoints require a Bearer token obtained via the Circle key exchange.
    Include the

    token in the `Authorization: Bearer <token>` header.


    ## Idempotency

    All POST endpoints require an `X-Idempotency-Key` header. Provide a
    client-generated UUID v4

    with each POST request. If the same key is retried, the original response is
    returned without

    re-executing the operation. Omitting the header on a POST will result in a
    400 error.
  title: Circle Partner Onboarding API
  version: '2026-04-15'
servers:
  - description: Production
    url: https://api.circle.com
  - description: Sandbox
    url: https://api-sandbox.circle.com
security:
  - bearerAuth: []
paths:
  /v1/onboarding/partner/applications/{applicationId}/rfis/{rfiId}:
    get:
      tags:
        - Partner RFIs
      summary: Get RFI detail with comment history
      operationId: getRFI
      parameters:
        - description: Application UUID
          example: 550e8400-e29b-41d4-a716-446655440000
          in: path
          name: applicationId
          required: true
          schema:
            type: string
            format: uuid
        - description: RFI UUID
          example: 550e8400-e29b-41d4-a716-446655440003
          in: path
          name: rfiId
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RFIDetailResponse'
          description: RFI detail with comments
        '401':
          description: Authentication required
        '403':
          description: Insufficient permissions
        '404':
          description: Application or RFI not found
        '422':
          description: Resource limit exceeded (maximum comments per RFI)
components:
  schemas:
    RFIDetailResponse:
      type: object
      properties:
        comments:
          type: array
          items:
            $ref: '#/components/schemas/RFICommentResponse'
        createdAt:
          type: string
          format: date-time
        field:
          type: string
        rfiId:
          type: string
          format: uuid
        section:
          type: string
        status:
          type: string
        type:
          type: string
    RFICommentResponse:
      type: object
      properties:
        author:
          type: string
        commentId:
          type: string
          format: uuid
        content:
          type: string
        createdAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      description: Bearer token obtained via Circle key exchange
      scheme: bearer
      type: http

````