Skip to main content
POST
Answer a request for information

Authorizations

X-Application-Token
string
header
required

Application-specific token for public URL access. Generated when a customer is created. Provides access to a single application without requiring an API key. Token is valid for 90 days and rate-limited to 250 requests per hour.

Headers

x-idempotency-key
string<uuid>

Unique key, a UUID. The server rejects this call with 400 when the header is absent or is not a UUID, so send one on every request. A repeat of the same key within the cache window returns the original response instead of recording the answers again.

Path Parameters

id
string
required

Body

application/json
answers
object[]

Applicant answers to the freeform RFI questions asked on this application.

Response

The response was recorded and the application is back with the reviewer.

Each call records the answers it carries, so a second call with a NEW x-idempotency-key leaves the reviewer reading the same answer twice. The status change and customer.rfi.responded are raised once either way.

Retry with the SAME x-idempotency-key as the call you are retrying: within the cache window the original response is replayed and nothing is recorded again, which is what makes a retry safe when you cannot tell whether the first attempt arrived.