List relationship tuples (paginated, newest first), optionally per namespace.
GET
End-user session operationId: list_relations/v1/authz/relations Authorization
Called from the browser with the publishable application id (x-application-id); the access token lives in memory.
Query parameters
namespacestring optionalRestrict to one object namespace (e.g. `document`).
limitinteger<int64> optionalPage size (default 25, max 100).
offsetinteger<int64> optionalRow offset (default 0).
Responses
200 Relationship tuples
{
"data": {
"limit": 0,
"offset": 0,
"relations": [
{
"created_at": null,
"object": null,
"relation": null,
"subject": null
}
],
"total": 0
},
"error": {
"code": "string",
"message": "string"
},
"meta": {
"timestamp": "string"
},
"success": false
}Request
curl -X GET "http://localhost:8080/v1/authz/relations" \Try it
live requestGET
http://localhost:8080/v1/authz/relations