Create a credit card
Endpoint
POST https://canadamotorjobs.com/api/v1/{locale}/credit-cards/create
Parameters
| Parameter | Type | Description |
|---|---|---|
business_id | string | The business ID to which the credit card will be associated |
card_number | string | The credit card number |
card_expiry | string | The credit card expiration date |
card_cvv | string | The credit card security code |
description | string | The 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
}
]
}
}