Skip to main content
POST
/
v1
/
rfis
/
{id}
/
respond
Respond to an RFI
curl --request POST \
  --url https://api.antonpayments.com/v1/rfis/{id}/respond \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "response": "<string>",
  "document_ids": [
    "<string>"
  ]
}
'
{
  "data": {
    "id": "<string>",
    "merchant_id": "<string>",
    "status": "open",
    "category": "source_of_funds",
    "urgency": "low",
    "entity_type": "<string>",
    "entity_id": "<string>",
    "subject": "<string>",
    "description": "<string>",
    "questions": [
      "<string>"
    ],
    "response": "<string>",
    "responded_at": "2023-11-07T05:31:56Z",
    "document_ids": [
      "<string>"
    ],
    "due_at": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Merchant API key: ak_live_* (production) or ak_test_* (sandbox).

Path Parameters

id
string
required

Resource identifier.

Body

application/json
response
string
required

Merchant's text response.

document_ids
string[]

IDs of supporting documents uploaded via the documents endpoint.

Response

Response recorded.

data
object
required