v1
latestOpenAPI 3.0.22026-07-26123510445.2 KBAnswer RFI
Submit an answer to an RFI. The answer.key for each item must match the corresponding question.key returned by Retrieve RFI.
For attachment-type questions, upload each document via Upload A File first to obtain a file_id, then include the returned IDs in the attachments array.
Headers
Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts API. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.
A unique identifier (UUID) used to maintain operation idempotency, ensuring that repeated executions of the same operation do not result in unintended effects or duplication. It helps preserve data consistency in the face of network errors, retries, or failures.
Request body
Example request
{
"rfi_id": "f846c1c3-8e8e-4560-b1a8-5318e858df1c",
"answer": [
{
"key": "basic_certificate_of_incorporation",
"type": "ATTACHMENT",
"attachments": [
"63d75f6d-97a3-478c-bdbf-b050c650d72a"
]
}
]
}Response
OK - Successfully answered the RFI.
Example response
{
"account_id": "f5bb6498-552e-40a5-b14b-616aa04ac1c1",
"rfi_id": "f846c1c3-8e8e-4560-b1a8-5318e858df1c",
"status": "SUBMITTED_PENDING",
"create_time": "2024-11-08T17:17:32+08:00",
"update_time": "2024-11-09T17:17:32+08:00",
"request": [
{
"question": {
"key": "basic_certificate_of_incorporation",
"comment": "Company Registration Documentation: includes company name, registered address, business license, etc.",
"type": "ATTACHMENT"
},
"answer": {
"key": "basic_certificate_of_incorporation",
"type": "ATTACHMENT",
"attachments": [
"63d75f6d-97a3-478c-bdbf-b050c650d72a"
]
}
}
]
}