GET
/v1/order/{id}/company-payment-start
curl \
--request GET 'https://api-dev.classmanager.io/v1/order/ord_123123123123/company-payment-start'
Response examples (200)
{
"amountToPay": "12.34",
"cardProcessingFee": "1.23",
"paymentMethods": [
{
"id": "pm_123456789",
"type": "acss_debit",
"isDefault": true,
"data": {
"brand": "amex",
"country": "US",
"expiryMonth": 12,
"expiryYear": 2023,
"cardNumber": "************4242",
"last4": "4242"
}
}
]
}