Skip to main content
GET
/
v1
/
rfis
/
{id}
Get an RFI
curl --request GET \
  --url http://localhost:8080/v1/rfis/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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",
  "resolution_note": "<string>",
  "outcome": "<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_... or ak_test_...

Path Parameters

id
string
required

Resource identifier (xid format)

Response

200 - application/json

RFI details

id
string
merchant_id
string
status
enum<string>
Available options:
open,
responded,
in_review,
resolved,
escalated,
closed
category
enum<string>
Available options:
source_of_funds,
purpose_of_payment,
beneficiary_info,
documentation,
unusual_activity,
sanctions_related,
other
urgency
enum<string>
Available options:
low,
medium,
high,
critical
entity_type
string
entity_id
string
subject
string
description
string
questions
string[]
response
string
responded_at
string<date-time>
resolution_note
string
outcome
string
due_at
string<date-time>
created_at
string<date-time>
updated_at
string<date-time>