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 Policies
        • POSTCreate Organization Policy
        • PUTUpdate Organization Policy
        • DELDelete Organization Policy
  • Evals
  • Legacy
LogoLogo
Trust CenterStatusSupportGet a demoPlatform
Data ModelsOrganizationPolicies

List Organization Policies

GET
https://api.confident-ai.com/v1/organization/policies
GET
/v1/organization/policies
$curl https://api.confident-ai.com/v1/organization/policies \
> -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200Retrieved
1{
2 "success": true,
3 "data": {
4 "policies": [
5 {
6 "id": "policy-uuid-2",
7 "name": "Manage billing",
8 "description": "Grants access to billing settings",
9 "permissions": [
10 {
11 "id": "perm-uuid-1",
12 "name": "billing:read"
13 },
14 {
15 "id": "perm-uuid-2",
16 "name": "billing:write"
17 }
18 ]
19 }
20 ]
21 }
22}
Lists the custom policies defined by your organization. Each policy is a named collection of permissions.
Was this page helpful?
Previous

Create Organization Policy

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