Skip to content

RFI

A Request for Information (RFI) is raised when Glomo's compliance checks need additional information — most commonly supporting documents such as a passport — before a transaction can be completed, for example when a payment is placed on a sanctions-screening hold. The RFI id is exposed on the underlying resource (for example, the rfi object on a Payment). Use this resource to submit the requested documents and resolve the RFI.

List RFIs

Request

Returns your business's RFIs across every entity type — payments, payins, payouts, refunds, orders and subscriptions — not just a single resource. Use status and search to filter the list, and the pagination parameters to page through results. Results are ordered by created_at descending.

Security
JWT
Query
statusstring

Filter RFIs by status.

Enum:"action_required""under_review""approved""rejected""superseded""expired"
Example:status=approved
searchstring

Filter by an exact match on either the RFI's id or the underlying entity's id.

Example:search=rfi_6a7c5018ZGuKP
beforestring, (timestamp)

ISO-8601 timestamp in UTC to filter resources created before this time. Use this to avoid Page drift issue. See Pagination parameters for more details.

Example:before=2025-02-18T12:03:44Z
afterstring, (timestamp)

ISO-8601 timestamp in UTC to filter resources created after this time. Use this to avoid Page drift issue. See Pagination parameters for more details.

Example:after=2025-01-18T12:03:44Z
per_pageinteger

Number of resources per page. Should be between 1 and 100.

Default:20
pageinteger

Page number for pagination. Starts from 1. Get the next page number from the next field in the response.

Default:1
GET
/rfis
curl -i -X GET \
  'https://api.glomopay.com/api/v1/rfis?status=approved&search=rfi_6a7c5018ZGuKP&before=2025-02-18T12%3A03%3A44Z&after=2025-01-18T12%3A03%3A44Z&per_page=20&page=1' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

List of RFIs matching the filters

Bodyapplication/json
dataArray of objects(RfiListItem)
page_metaobject(PageMeta)
Response
{ "data": [ {} ], "page_meta": { "current": 2, "previous": 1, "next": 3, "per_page": 20, "pages": 10, "count": 200 } }