List access requests
Retrieve all access requests (contacts) within the current tenant, with optional filtering by review status and account. Results are sorted by creation date (newest first).
AuthorizationBearer <token>
In: header
Query Parameters
review_status?array<string>
Filter by one or more review status values
account_id?string
Filter access requests by specific account ID
Format
uuid
Response Body
fetch("https://app.orbiqhq.com/api/v1/access-requests?review_status=to_review%2Cin_review&account_id=550e8400-e29b-41d4-a716-446655440000")
{
"contacts": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@burgerking.com",
"review_status": "in_review",
"date_created": "2025-01-15T10:00:00Z",
"account": {
"id": "acc-123",
"title": "Burger King",
"review_status": "approved"
}
},
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"first_name": "Jane",
"last_name": "Smith",
"email": "jane.smith@acme.com",
"review_status": "approved",
"date_created": "2025-01-14T15:30:00Z",
"account": {
"id": "acc-456",
"title": "Acme Corporation",
"review_status": "approved"
}
}
]
}
Empty
Empty
{
"error": "Failed to load access requests"
}
How is this guide?