Collection Partners#
Collection Partners are licensed debt collection agencies that handle the recovery process on your behalf. CasaPay automatically assigns the best partner based on the debtor's jurisdiction.
The Collection Partner object#
| Attribute | Type | Description |
|---|---|---|
id | string | Partner identifier |
object | string | Always "collection_partner" |
name | string | Company name |
email | string | Contact email |
phone | string | Contact phone |
site | string | Website URL |
countries | array | Jurisdictions covered |
specializations | array | Debtor types handled: private, company |
success_rate | number | Historical success rate (0–1) |
avg_resolution_days | integer | Average days to resolution |
{
"id": "cp_partner_de_01",
"object": "collection_partner",
"name": "CollectMax GmbH",
"email": "cases@collectmax.de",
"phone": "+49 30 1234567",
"site": "https://collectmax.de",
"countries": ["DE", "AT", "CH"],
"specializations": ["private", "company"],
"success_rate": 0.73,
"avg_resolution_days": 45
}Retrieve a Collection Partner#
GET /v1/collection_partners/:id
curl https://api.casapay.com/v1/collection_partners/cp_partner_de_01 \
-H "Authorization: Bearer sk_test_4eC39HqLyjWDarjtT1zdp7dc"List Collection Partners#
GET /v1/collection_partners
| Parameter | Type | Description |
|---|---|---|
country | string | Filter by covered country |
curl "https://api.casapay.com/v1/collection_partners?country=DE" \
-H "Authorization: Bearer sk_test_4eC39HqLyjWDarjtT1zdp7dc"