Create an axerve payment
How to create an axerve payment via API
To create a new axerve payment, send a
POST
request to the /api/axerve_payments
endpoint, passing the resource arguments in the request body.POST https://yourdomain.commercelayer.io/api/axerve_payments
Body Parameter | Type | Required |
---|---|---|
type | string | Required |
attributes.return_url | string | Required |
attributes.reference | string | Optional |
attributes.reference_origin | string | Optional |
attributes.metadata | object | Optional |
relationships.order | object | Required |
Request
Response
The following request creates a new axerve payment:
curl -g -X POST \
'https://yourdomain.commercelayer.io/api/axerve_payments' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token' \
-H 'Content-Type: application/vnd.api+json' \
-d '{
"data": {
"type": "axerve_payments",
"attributes": {
"return_url": "https://yourdomain.com/thankyou"
},
"relationships": {
"order": {
"data": {
"type": "orders",
"id": "ABCRtyUpBa"
}
}
}
}
}'
On success, the API responds with a
201 Created
status code, returning the created resource object:{
"data": {
"id": "xYZkjABcde",
"type": "axerve_payments",
"links": {
"self": "https://yourdomain.commercelayer.io/api/axerve_payments/xYZkjABcde"
},
"attributes": {
"login": "xxxx-yyyy-zzzz",
"return_url": "https://yourdomain.com/thankyou",
"payment_request_data": {
"foo": "bar"
},
"mismatched_amounts": false,
"intent_amount_cents": 1000,
"intent_amount_float": 10.0,
"formatted_intent_amount": "€10,00",
"payment_instrument": {
"issuer": "cl bank",
"card_type": "visa"
},
"created_at": "2018-01-01T12:00:00.000Z",
"updated_at": "2018-01-01T12:00:00.000Z",
"reference": "ANY-EXTERNAL-REFEFERNCE",
"reference_origin": "ANY-EXTERNAL-REFEFERNCE-ORIGIN",
"metadata": {
"foo": "bar"
}
},
"relationships": {
"order": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/axerve_payments/xYZkjABcde/relationships/order",
"related": "https://yourdomain.commercelayer.io/api/axerve_payments/xYZkjABcde/order"
}
},
"payment_gateway": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/axerve_payments/xYZkjABcde/relationships/payment_gateway",
"related": "https://yourdomain.commercelayer.io/api/axerve_payments/xYZkjABcde/payment_gateway"
}
},
"versions": {
"links": {
"self": "https://yourdomain.commercelayer.io/api/axerve_payments/xYZkjABcde/relationships/versions",
"related": "https://yourdomain.commercelayer.io/api/axerve_payments/xYZkjABcde/versions"
}
}
},
"meta": {
"mode": "test"
}
}
}
Last modified 29d ago