Create a checkout.com payment
How to create a checkout.com payment via API
Request
Arguments
Body Parameter
Type
Required
Example
curl -g -X POST \
'https://yourdomain.commercelayer.io/api/checkout_com_payments' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token' \
-H 'Content-Type: application/vnd.api+json' \
-d '{
"data": {
"type": "checkout_com_payments",
"attributes": {
"token": "tok_4gzeau5o2uqubbk6fufs3m7p54",
"success_url": "http://commercelayer.dev/checkout_com/success",
"failure_url": "http://commercelayer.dev/checkout_com/failure"
},
"relationships": {
"order": {
"data": {
"type": "orders",
"id": "ABCRtyUpBa"
}
}
}
}
}'Last updated