API Reference
- Customers
- Customer Links
- Customer Sessions
- Payment Methods
- Transaction Intents
- Transactions
- Rewards
- Offers
- Simulate Transaction Event
- Simulate Statement Reward
- Keys
- Webhooks
Payment Methods
Apply for a new payment method
POST
/
v2
/
payment_methods
/
apply
Copy
Ask AI
curl --request POST \
--url https://dev.sbx.imprint.co/v2/payment_methods/apply \
--header 'Content-Type: application/json' \
--data '{
"customer_id": "54CFF41D-0AA0-4D16-853B-608C5AAF503D",
"partner_customer_id": "CUST_03476998",
"partner_identifier": "MCD",
"ssn4": "1234",
"housing_type": "RENT",
"income_type": "EMPLOYED",
"housing_cost": 120000,
"housing_cost_currency": "USD",
"income_amount": 8050000,
"income_amount_currency": "USD",
"email": "customer@example.com",
"phone": "+14155552671",
"first_name": "John",
"last_name": "Doe",
"address": {
"street_line1": "123 Main St",
"street_line2": "Apt 4B",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country": "USA"
},
"type": "CARD",
"amount": 123,
"term_months": 123,
"metadata": {
"platform_version": "2.1.0"
}
}'
Copy
Ask AI
{
"id": "DCBFC736-2286-42DD-897D-160DCA80AED2",
"type": "CARD",
"customer_id": "B40A789E-BD46-4BB9-B63E-F9919582694C",
"card": {
"last4": "1234",
"network": "VISA",
"card_type": "PHYSICAL",
"card_design_id": "3b9c1f3e-52a0-44c1-b131-a7ab0099a214",
"pci_details": {
"pan": "5105105105105100",
"exp_month": "06",
"exp_year": "26",
"cvv": "123"
}
},
"bank_account": {
"last4": "1234",
"routing_number": "<string>",
"bank_name": "Wells Fargo",
"account_type": "CHECKING"
},
"loan": {
"amount": 10000,
"currency": "USD",
"remaining_balance": 123,
"term_months": 12,
"apr": "5.89",
"loan_status": "PENDING"
},
"created_at": "2025-02-13T19:08:07.000Z",
"updated_at": "2025-02-13T19:08:07.000Z",
"status": "ACTIVE",
"metadata": {
"platform_version": "2.1.0"
}
}
Authorizations
Bearer HTTP authentication. Allowed headers-- Authorization: Bearer <api_key>
Body
application/json
Response
200
application/json
Payment method application successful
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://dev.sbx.imprint.co/v2/payment_methods/apply \
--header 'Content-Type: application/json' \
--data '{
"customer_id": "54CFF41D-0AA0-4D16-853B-608C5AAF503D",
"partner_customer_id": "CUST_03476998",
"partner_identifier": "MCD",
"ssn4": "1234",
"housing_type": "RENT",
"income_type": "EMPLOYED",
"housing_cost": 120000,
"housing_cost_currency": "USD",
"income_amount": 8050000,
"income_amount_currency": "USD",
"email": "customer@example.com",
"phone": "+14155552671",
"first_name": "John",
"last_name": "Doe",
"address": {
"street_line1": "123 Main St",
"street_line2": "Apt 4B",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country": "USA"
},
"type": "CARD",
"amount": 123,
"term_months": 123,
"metadata": {
"platform_version": "2.1.0"
}
}'
Copy
Ask AI
{
"id": "DCBFC736-2286-42DD-897D-160DCA80AED2",
"type": "CARD",
"customer_id": "B40A789E-BD46-4BB9-B63E-F9919582694C",
"card": {
"last4": "1234",
"network": "VISA",
"card_type": "PHYSICAL",
"card_design_id": "3b9c1f3e-52a0-44c1-b131-a7ab0099a214",
"pci_details": {
"pan": "5105105105105100",
"exp_month": "06",
"exp_year": "26",
"cvv": "123"
}
},
"bank_account": {
"last4": "1234",
"routing_number": "<string>",
"bank_name": "Wells Fargo",
"account_type": "CHECKING"
},
"loan": {
"amount": 10000,
"currency": "USD",
"remaining_balance": 123,
"term_months": 12,
"apr": "5.89",
"loan_status": "PENDING"
},
"created_at": "2025-02-13T19:08:07.000Z",
"updated_at": "2025-02-13T19:08:07.000Z",
"status": "ACTIVE",
"metadata": {
"platform_version": "2.1.0"
}
}
Assistant
Responses are generated using AI and may contain mistakes.