Skip to main content
GET
/
companies
/
{id}
/
applications
List company applications
curl --request GET \
  --url https://api.rnbi.magent.finance/companies/{id}/applications/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Reap-Version: <reap-version>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "INITIATED",
      "sessionUrl": "<string>",
      "expiresAt": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

API key as Bearer token

Headers

Reap-Version
enum<string>
required

API version (YYYY-MM-DD)

Available options:
2025-02-14

Path Parameters

id
string<uuid>
required

Unique company identifier

Query Parameters

limit
integer
default:20

Maximum number of items to return (1-100, default: 20)

Required range: x <= 100
Examples:

20

50

100

cursor
string

Opaque cursor for pagination. Pass nextCursor from previous response to get next page.

status

Filter by application status (comma-separated)

Response

Paginated list of company applications

items
object[]
required

Array of items for current page

nextCursor
string | null
required

Cursor for next page, or null if no more items