Endpoints related to settlement matching
Kaizen Scrubbing API (11.2.1)
To get integration keys, go to Settings > API Keys
Languages
Servers
Mock server
https://kaizen-api-gateway-public.redocly.app/_mock/openapi/
Production Server
https://kaizen.vertebratechnologies.com/apiGateway/
Bodyapplication/jsonrequired
reference merchant id, this is the same as your merchantID
Example: "9340849324-2kskd-29382-sdkns"
Array of settlement data
Enum"tax-relief""personal-loan""debt-relief""other-need-help"
Example: "tax-relief"
An id used by your internal team (correlation ID)
Example: "ROT-23092"
- Mock server
https://kaizen-api-gateway-public.redocly.app/_mock/openapi/uploadSapphireLead
- Production Server
https://kaizen.vertebratechnologies.com/apiGateway/uploadSapphireLead
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://kaizen-api-gateway-public.redocly.app/_mock/openapi/uploadSapphireLead \
-H 'Content-Type: application/json' \
-H 'integration_apikey: YOUR_API_KEY_HERE' \
-H 'integration_secret: string' \
-H 'merchant_id: string' \
-H 'tunnel_id: string' \
-d '{
"user": "debtor@example.com",
"ref_id": "OPAN",
"referenceMerchant": "9340849324-2kskd-29382-sdkns",
"data": [
{
"email": "john@gmail.com",
"first_name": "john",
"last_name": "doe",
"phone": "XXXXXXXXXX",
"debt_amount": "209.23",
"debt_amount_collection_accounts": "90.20",
"productType": "tax-relief",
"credit_score": "700",
"dob": "10/20/2001",
"internal_reference": "ROT-23092",
"ready_to_sell": true,
"address1": "89 Brendan Lane",
"address2": "",
"city": "Los Angeles",
"state": "CA",
"zip": "89 Brendan Lane",
"metaString": "{string: hello}"
}
]
}'Response
application/json
{ "message": "Success", "prompt": "", "successful_options": 3, "total_options": 100, "success_rate": 3 }