Launch Week 02 wrapped — explore all five launches

List Governance Policy Projects

GEThttps://api.confident-ai.com/v1/organization/governance-policies/{policyId}/projects

Lists the projects assigned to a governance policy, paginated.

GET/v1/organization/governance-policies/{policyId}/projects
curl -X GET "https://api.confident-ai.com/v1/organization/governance-policies/{policyId}/projects" \
  -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200
{
  "success": true,
  "data": {
    "projects": [
      {
        "id": "project-uuid-1",
        "name": "Acme Support Agent"
      }
    ],
    "total": 1
  }
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The organization API key for your Confident AI organization.

Path parameters

  • policyIdstringRequired

    The unique identifier of the governance policy.

Query parameters

  • pageintegerdefault: 1

    Page number (must be a positive integer, default is 1).

  • pageSizeintegerdefault: 25

    Number of items per page (max 100, default is 25).

Response

  • successboolean

    Indicates if the request was successful

  • dataobject

    Show 2 propertiesHide 2 properties
    • projectslist of objects

      The projects assigned to this governance policy (paginated).

      Show 2 propertiesHide 2 properties
      • idstring

        The unique identifier of the project.

      • namestring

        The name of the project.

    • totalinteger

      Total number of projects assigned to this policy.

Built byConfident AI