Skip to main content
POST
/
v1
/
onboarding
/
partner
/
applications
/
{applicationId}
/
rfis
/
{rfiId}
/
comments
Add a comment to an RFI
curl --request POST \
  --url https://api-sandbox.circle.com/v1/onboarding/partner/applications/{applicationId}/rfis/{rfiId}/comments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Idempotency-Key: <x-idempotency-key>' \
  --data '
{
  "content": "<string>"
}
'
{
  "author": "<string>",
  "commentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "content": "<string>",
  "createdAt": "2023-11-07T05:31:56Z"
}

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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Idempotency-Key
string<uuid>
required

Client-generated UUID used to safely retry POST requests. If the same key is submitted twice, the original response is returned without re-executing the operation. Must be a valid UUID v4 (e.g. 550e8400-e29b-41d4-a716-446655440099).

Path Parameters

applicationId
string<uuid>
required

Application UUID

rfiId
string<uuid>
required

RFI UUID

Body

application/json
content
string
required
Minimum string length: 1

Response

Comment created

author
string
commentId
string<uuid>
content
string
createdAt
string<date-time>