Documentation Index
Fetch the complete documentation index at: https://docs.metabind.ai/llms.txt
Use this file to discover all available pages before exploring further.
Path Parameters
Query Parameters
Items per page (default: 20)
Cursor for pagination (from previous response)
Search term for name/description
Response
Returns a paginated list of Role objects.
{
"data": [
{
"id": "role123",
"name": "editor",
"description": "Content management with publishing rights",
"permissions": {
"organizations": { "read": true, "update": false, "delete": false },
"projects": { "create": false, "read": true, "update": false, "delete": false },
"content": { "create": true, "read": true, "update": true, "publish": true, "delete": true },
"assets": { "create": true, "read": true, "update": true, "delete": true }
},
"createdAt": "2024-03-20T10:00:00Z",
"updatedAt": "2024-03-20T10:00:00Z"
}
],
"pagination": {
"lastKey": "role456"
}
}
Code Examples
curl -X GET "https://api.metabind.ai/app/v1/organizations/org123/roles" \
-H "Authorization: Bearer YOUR_JWT"