LLM-readable documentation index
ApiV3GeneratedEntity Curation

Bulk Validate Entities

Hand off to an LLM
POST
/v3/entities/bulk-validate
x-api-key<token>

Authenticate using API Key in request header

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.bem.ai/v3/entities/bulk-validate" \  -H "Content-Type: application/json" \  -d '{    "entityIDs": [      "ent_2abc",      "ent_2def"    ],    "status": "approved"  }'
{
  "results": [
    {
      "entityID": "string",
      "outcome": "validated",
      "reason": "string"
    }
  ],
  "summary": {
    "validated": 0,
    "skipped": 0,
    "rejectedRow": 0
  }
}