API reference
Search
K
Links
Comment on page

Delete a klarna payment

How to delete an existing klarna payment via API
To delete a klarna payment, send a DELETE request to the /api/klarna_payments/:id endpoint, where id is the id of the klarna payment that you want to delete.

Request

DELETE https://yourdomain.commercelayer.io/api/klarna_payments/:id

Example

Request
Response
The following request tries to delete the klarna payment identified by the ID "xYZkjABcde":
curl -g -X DELETE \
'https://yourdomain.commercelayer.io/api/klarna_payments/xYZkjABcde' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token'
On success, the API responds with a 204 No Content status code.