Skip to main content
GET
Get requests via Relay

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

first
integer

Number of results to return after the cursor. Use either first/after or last/before, not both.

Required range: 1 <= x <= 100
after
string

Cursor to fetch results after. Used with 'first' for forward pagination.

last
integer

Number of results to return before the cursor. Use either first/after or last/before, not both.

Required range: 1 <= x <= 100
before
string

Cursor to fetch results before. Used with 'last' for backward pagination.

status
enum<string>

Filter requests by their status.

Request Status

Description

The RequestStatus enum is used to represent the status of a request.

Usage Example

Returned from the GET Requests endpoint.

Available options:
PENDING,
APPROVED,
DENIED,
CANCELED
to
string<uuid>

Filter requests assigned to a specific user ID.

from
string<uuid>

Filter requests made by a specific user ID.

Response

200 - application/json

A paginated list of requests using Relay-style cursor pagination.

edges
object[]
required
pageInfo
object
required
totalCount
integer
required

The total number of items available

Last modified on July 23, 2026