API reference
Search
K
Links

Delete a payment method

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

Request

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

Example

Request
Response
The following request tries to delete the payment method identified by the ID "xYZkjABcde":
curl -g -X DELETE \
'https://yourdomain.commercelayer.io/api/payment_methods/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.