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)
Languages
Servers
Mock server
https://idp.cdq.com/_mock/apis/salesforce-api/api-v1/
Production SOAP
https://api.cdq.com/salesforce/v1/soap/v1/
Production
https://api.cdq.com/salesforce/v1/
Bodyapplication/jsonrequired
Matching threshold for the Business Partner.
Example: "0.5"
Maximum number of candidates to return. Default is 50.
Example: "50"
- Mock server
https://idp.cdq.com/_mock/apis/salesforce-api/api-v1/referencedata/restv3/businesspartners/lookup
- Production SOAP
https://api.cdq.com/salesforce/v1/soap/v1/referencedata/restv3/businesspartners/lookup
- Production
https://api.cdq.com/salesforce/v1/referencedata/restv3/businesspartners/lookup
curl -i -X POST \
https://idp.cdq.com/_mock/apis/salesforce-api/api-v1/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": [ { … } ] }