SubmitResponsesRequest
answers object[]
Optional list of question answers to submit in this batch.
Array [
questionIdstring<uuid>required
Question UUID to answer.
answerstringrequired
Free-text answer.
Possible values: non-empty
]
attachments object[]
Optional list of document attachments to submit in this batch. Each entry's documentRequestId must match a Rfi.documentRequests[].id on the same RFI.
Array [
documentRequestIdstring<uuid>required
UUID of the document-request slot to attach to (same as Rfi.documentRequests[].id).
documentUploadIdsstring<uuid>[]required
One or more DocumentUpload UUIDs previously returned by POST /v1/account/documents/upload.
Possible values: >= 1
]
SubmitResponsesRequest
{
"answers": [
{
"questionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"answer": "string"
}
],
"attachments": [
{
"documentRequestId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"documentUploadIds": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
]
}
]
}