LLM-readable documentation index
ApiV3GeneratedEntity Type Reviewers

Assign a Reviewer

Hand off to an LLM
POST
/v3/entity-types/{typeID}/reviewers
x-api-key<token>

Authenticate using API Key in request header

In: header

Path Parameters

typeID*string

Entity type public ID (ety_...).

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

userID*string

Public ID (usr_...) of the user to assign. Must belong to the account.

Response Body

application/json

curl -X POST "https://api.bem.ai/v3/entity-types/string/reviewers" \  -H "Content-Type: application/json" \  -d '{    "userID": "usr_2xyz..."  }'
{
  "reviewerID": "string",
  "userID": "string",
  "email": "string",
  "role": "string",
  "createdAt": "2019-08-24T14:15:22Z"
}