This API provides access to several CDQ API endpoints according to the Salesforce object reference. Requests and responses are mapped from the CDQ data model to the Salesforce object reference in order to simplify service access from Salesforce integrations.
Salesforce API (1)
Download OpenAPI description
Languages
Servers
Production
https://api.cdq.com/salesforce/rest/
Bodyapplication/jsonrequired
Matching threshold for the Business Partner.
Example: "0.5"
Maximum number of candidates to return. Default is 50.
Example: "50"
- Production
https://api.cdq.com/salesforce/rest/referencedata/restv3/businesspartners/lookup
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X POST \
https://api.cdq.com/salesforce/rest/referencedata/restv3/businesspartners/lookup \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"businessPartner": {
"addresses": [
{
"country": {
"shortName": "PL"
}
}
],
"identifiers": [
{
"value": "PL9280012700",
"type": {
"technicalKey": "EU_VAT_ID_PL"
}
}
]
}
}'
Response
application/json
{ "pageSize": "10", "totals": "67", "page": "0", "limitResults": "100", "startAfter": "5712566172571652", "nextStartAfter": "5712566172571652", "businessPartnerCandidates": [ { … } ] }