Skip to main content
GET
/
api
/
coach
/
rubrics
List coach rubrics
curl --request GET \
  --url https://enterprise-api.avoca.ai/api/coach/rubrics \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "title": "<string>",
      "items": [
        {
          "key": "<string>",
          "name": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

API key in the format avoca_<64 hex characters>

Headers

x-team-id
integer

Target team ID. Required for multi-team (enterprise_all_teams / portfolio_all_teams) keys on v0 endpoints; single-team keys are locked to their team and omit it.

Response

Enabled rubrics with item key/name pairs

data
object[]