For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
LearnGraph LoginRequest a Demo
HomeAPIBulk DataSayari LibraryChange Log
  • Key Concepts
    • Introduction
    • Endpoint Overview
    • Authentication
    • Requests
    • Pagination
    • Response Status Codes
    • Data Types
    • Rate Limits
  • API Clients
    • Overview
    • Open API
    • Postman
    • Go
    • Python
    • Node
  • API Reference
      • POSTCreate Project Entity
      • GETGet Project Entities
      • GETGet Project Entity
      • POSTAdd Project Entity Matches
      • PATCHReplace Project Entity Matches
      • DELDelete Project Entity
      • DELDelete Project Entity Match
      • POSTProject Entity Exists
      • POSTSave Project Entity
      • GETGet Project Risk Changes
      • GETGet Project Entity Risk Changes
      • DELDelete Project Risk Changes
      • DELDelete Project Entity Risk Changes
      • GETProject Entity Supply Chain
      • GETGet Project Entity Risk Summary
      • GETProject Entity Supply Chain Summary
  • Guides
    • Getting Started
    • Understanding Project Entity
    • Risk Factors
    • Entity Search
    • Advanced Entity Search
    • Resolution
    • Trade Search - Shipments
    • Trade Search - Suppliers & Buyers
    • v0 Migration
  • Implementation Patterns
    • Project Entity Supply Chain
  • Use Cases
    • Entity Screening & Verification
    • Investigations
LogoLogo
LearnGraph LoginRequest a Demo
API ReferenceProject Entity

Add Project Entity Matches

Beta
POST
/v1/projects/:project_id/entities/:project_entity_id/matches
POST
/v1/projects/:project_id/entities/:project_entity_id/matches
$curl -X POST https://api.sayari.com/v1/projects/project_id/entities/project_entity_id/matches \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "entity_ids": [
> "entity_ids",
> "entity_ids"
> ]
>}'
1{
2 "data": [
3 "data",
4 "data"
5 ]
6}
Adds matches to a project entity.
Was this page helpful?
Previous

Replace Project Entity Matches

Next
Built with

Authentication

AuthorizationBearer

OAuth authentication of the form <token>.

Path parameters

project_idstringRequired
project_entity_idstringRequired

Request

This endpoint expects an object.
entity_idslist of stringsRequired
override_deletedbooleanOptional
Add a previously deleted match. Defaults to false.
limitintegerOptional
Limit total matches to update. Defaults to 10. Max 50.

Response

This endpoint returns an object.
datalist of strings
Updated entity ids

Errors

400
Bad Request
401
Unauthorized
404
Not Found
405
Method Not Allowed
429
Rate Limit Exceeded
500
Internal Server Error