Guardrails
List member assignments for a guardrail
List all organization member assignments for a specific guardrail. Management key required.
get/guardrails/{id}/assignments/members
Path parameters
idstring uuid required
The unique identifier of the guardrail
Example:550e8400-e29b-41d4-a716-446655440000
The unique identifier of the guardrail
Query parameters
offsetinteger nullable
Number of records to skip for pagination
Number of records to skip for pagination
limitinteger
Maximum number of records to return (max 100)
Example:50
Maximum number of records to return (max 100)
Response
List of member assignments
Example response
{
"data": [
{
"assigned_by": "user_abc123",
"created_at": "2025-08-24T10:30:00Z",
"guardrail_id": "550e8400-e29b-41d4-a716-446655440001",
"id": "550e8400-e29b-41d4-a716-446655440000",
"organization_id": "org_xyz789",
"user_id": "user_abc123"
}
],
"total_count": 1
}Changes
Changed in 1 of the 222 revisions of this API.2
- ▲
for the
queryrequest parameterlimit, default value50was addedrequest-parameter-default-value-added
- ▲
for the
queryrequest parameteroffset, default value0was addedrequest-parameter-default-value-added
- ▲