For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Trust CenterStatusSupportGet a demoPlatform
DocumentationEvals API ReferenceIntegrations & OTELPlatform SettingsSelf-HostingGuidesChangelog
DocumentationEvals API ReferenceIntegrations & OTELPlatform SettingsSelf-HostingGuidesChangelog
  • Get Started
    • Introduction
    • Quickstart
    • Authentication
    • Data Models
    • API Conventions
  • Data Models
      • GETRetrieve Organization
      • PUTUpdate Organization
        • GETList Organization Permissions
  • Evals
  • Legacy
LogoLogo
Trust CenterStatusSupportGet a demoPlatform
Data ModelsOrganizationPermissions

List Organization Permissions

GET
https://api.confident-ai.com/v1/organization/permissions
GET
/v1/organization/permissions
$curl https://api.confident-ai.com/v1/organization/permissions \
> -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200Retrieved
1{
2 "success": true,
3 "data": {
4 "permissions": [
5 {
6 "id": "perm-uuid-1",
7 "name": "billing:read",
8 "description": null
9 },
10 {
11 "id": "perm-uuid-2",
12 "name": "billing:write",
13 "description": null
14 }
15 ]
16 }
17}

Lists every assignable organization permission. Permissions are named resource:action (e.g. billing:read) and are the building blocks of policies.

Was this page helpful?
Previous

Run LLM Evals

Next
Built with

Headers

CONFIDENT_API_KEYstringRequired
The organization API key for your Confident AI organization.

Response

successboolean
Indicates if the request was successful
dataobject