Skip to main content
POST
/
api
/
data-readiness
/
glossary
/
terms
/
bulk-verify
Verify multiple glossary terms
curl --request POST \
  --url https://api.example.com/api/data-readiness/glossary/terms/bulk-verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "term_ids": [
    "<string>"
  ]
}
'
{
  "verified": [
    "<string>"
  ],
  "failed": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.emergence.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Include the token in the Authorization header as: Authorization: Bearer <token>. The JWT must contain valid client_id, and project_id claims for tenant isolation and SDK routing.

Body

application/json

Request to verify multiple terms at once.

term_ids
string[]
required

Term IDs to verify

Minimum array length: 1

Response

Successful Response

Response for bulk verify operation.

verified
string[]
required

Term IDs successfully verified

failed
string[]

Term IDs that failed verification