Skip to main content

Create a credit card

Endpoint

POST https://canadamotorjobs.com/api/v1/{locale}/credit-cards/create

Parameters

ParameterTypeDescription
business_idstringThe business ID to which the credit card will be associated
card_numberstringThe credit card number
card_expirystringThe credit card expiration date
card_cvvstringThe credit card security code
descriptionstringThe credit card description

Response

{
"success": true,
"message": "Credit card created successfully",
"data": {
"id": "1234567890",
"ref_id": "1234567890",
"ref_source": "2hr-tech",
"description": "Services department card - Honda Laval",
"last4": "1234",
"brand": "Visa",
"expiry": "12/2029",
"created_at": "2025-05-09 00:00:00",
"updated_at": "2025-05-09 00:00:00",
"businesses": [
{
"id": "1234567890",
"ref_id": "1234567890",
"ref_source": "2hr-tech",
"name": "Honda Laval",
"address": "1234 Peace Street, Laval, QC, H7P 0B3",
"default_card": true
}
]
}
}