ApiV3Generated
Entity Bulk Seed
Overview of the Entity Bulk Seed API
Hand off to an LLM
Seed the knowledge graph with a batch of customer-authored canonical entities in one request — their types, descriptions, synonyms, and per-entity attributes.
POST /v3/entities/bulkcreates or merges each entity into a single bucket (the optionalbucketreference, else the account+environment default). For each row the entity'stypeis resolved or created in your taxonomy, the entity is upserted on its normalized canonical, and anysynonymsare attached ascustomer_defined. An entity that already exists is merged (onConflict: "merge"): synonyms are added additively, a longerdescriptionreplaces the old one, andattributesare merged with new keys winning.- Small batches (fewer than 100 entities) process synchronously and
return
200with a per-rowresultsarray and asummary. - Larger batches process asynchronously: the call returns
202with aseedJobIDand astatusURL. PollGET /v3/entities/seed/{id}untilstatusiscompleted(orfailed); the completed response includes the per-rowresults.
Each row's outcome is one of created, merged-with, or rejected (with
a reason, e.g. an attribute key not declared in the type's schema).