Launch Week 02 wrapped — explore all five launches

Update Organization

PUThttps://api.confident-ai.com/v1/organization

Updates the organization's name.

PUT/v1/organization
curl -X PUT "https://api.confident-ai.com/v1/organization" \
  -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>" \
  -H "Content-Type: application/json" \
  -d '{
  "name": "Acme Inc."
}'
200
{
  "success": true,
  "data": {
    "organization": {
      "id": "ORGANIZATION-ID",
      "name": "Acme Inc.",
      "plan": "PREMIUM",
      "created_at": "2024-12-04T23:00:00.000Z"
    }
  }
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The organization API key for your Confident AI organization.

Request body

  • namestringRequired

    New name for the organization

Response

  • successboolean

    Indicates if the request was successful

  • dataobject

    Show 1 propertyHide 1 property
    • organizationobject

      Show 4 propertiesHide 4 properties
      • idstring

        Unique identifier for the organization

      • namestring

        Name of the organization

      • planenum

        The organization's current billing plan

        Show 6 enum valuesHide 6 enum values
        • TRIAL
        • FREE
        • STARTER
        • ENTERPRISE
        • TEAM
        • PREMIUM
      • created_atstring

        ISO 8601 timestamp of when the organization was created

Built byConfident AI