Skip to main content
POST
Search Access Requests

Authorizations

Authorization
string
header
required

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

Body

application/json
teamId
string

The ID of the team. Required.

requestedRoleId
string | null

Filter by requested role ID.

appInstanceId
string | null

Filter by app instance ID.

statuses
enum<string>[]

Filter by statuses (multiple allowed).

AccessRequestStatus represents the overall status of an access request. Used by the public API for SDK consumers.

Available options:
ACCESS_REQUEST_STATUS_UNSPECIFIED,
ACCESS_REQUEST_STATUS_PENDING,
ACCESS_REQUEST_STATUS_APPROVED,
ACCESS_REQUEST_STATUS_DENIED,
ACCESS_REQUEST_STATUS_EXPIRED,
ACCESS_REQUEST_STATUS_REVOKED,
ACCESS_REQUEST_STATUS_CANCELED,
ACCESS_REQUEST_STATUS_FAILED
targetUserId
string | null

Filter by the target user for whom access was requested.

requestedByUserId
string | null

Filter by the user who requested access.

createdAfter
string | null

Filter by requests created after this timestamp (RFC3339 format).

createdBefore
string | null

Filter by requests created before this timestamp (RFC3339 format).

linkedTicketId
string | null

Filter by linked ticket ID.

pageSize
integer<int32> | null

Maximum number of results to return. Default is 1000, maximum is 5000.

pageToken
string | null

Token for pagination. Leave empty for the first request.

Response

Success

data
AccessRequest · object[]

The list of access requests.

nextPageToken
string | null

Token for retrieving the next page of results. Empty if no more results.