Quote Requests#
Quote Requests allow you to solicit quotes from multiple collection partners before committing to a specific provider for a case.
The Quote Request object#
| Attribute | Type | Description |
|---|---|---|
id | string | Unique identifier with qr_ prefix |
object | string | Always "quote_request" |
case | string | Collection Case ID |
status | enum | pending, quotes_received, expired |
quotes_count | integer | Number of quotes received |
expires_at | timestamp | When the request expires |
created | timestamp | Time at which the object was created |
{
"id": "qr_abc123",
"object": "quote_request",
"case": "dc_a1b2c3d4",
"status": "quotes_received",
"quotes_count": 2,
"expires_at": 1706745600,
"created": 1706140800
}List Quote Requests#
GET /v1/collection_cases/:id/quote_requests
curl https://api.casapay.com/v1/collection_cases/dc_a1b2c3d4/quote_requests \
-H "Authorization: Bearer sk_test_4eC39HqLyjWDarjtT1zdp7dc"Retrieve a Quote Request#
GET /v1/quote_requests/:id
curl https://api.casapay.com/v1/quote_requests/qr_abc123 \
-H "Authorization: Bearer sk_test_4eC39HqLyjWDarjtT1zdp7dc"