- Request a credit check
You may request a credit check on a customer who hasn't previously been credit checked. This endpoint returns no content. You'll be able to see the date you requested the credit check (credit_check_requested_at) and credit_status updated to pending or, in the case of an instant decision, approved or declined by fetching the Customer entity.
A hold credit status represents when a customer's credit account is overdue. A deactivated credit status represents when a customer's credit account has been deactivated.
When a customer's credit_status is approved - the customer's net_terms_status represents the current state of a customer's enrollment in the approved net terms offer. See #fetchCustomer for more details.
Note: Except for instant decisions, a decision should be reflected on the Customer entity within 1 business day.
Request a credit check for a customer
Request an amount (plus buffer) to cover your customer's purchases over their payment term. This can be increased later.
A description of your customer's business.
Indicates whether this customer has prior purchase history with the sub-merchant. When true, the sub-merchant has prior purchase history with this customer.
- Mock serverhttps://docs.resolvepay.com/_mock/partners-api/openapi/customers/{customer_id}/credit-check
- Sandbox serverhttps://app-sandbox.resolvepay.com/api/customers/{customer_id}/credit-check
- bearerAuth
- basicAuth
curl -i -X POST \
'https://docs.resolvepay.com/_mock/partners-api/openapi/customers/{customer_id}/credit-check' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"amount_requested": 50000,
"business_description": "Put a description your customer'\''s business here.",
"has_purchase_history": true,
"has_purchase_terms_history": false
}'