Delete customer

Customers API v1

Warning

The v1 API has been deprecated. The v1 API will be supported for the foreseeable future, at least until July 2023. However, new features will only be added to the v2 API.

The documentation for deleting customers in the new v2 API can be found here. For more information on the v2 API, refer to our v2 migration guide.

DELETEhttps://api.mollie.com/v1/customers/*id*

Delete a customer. All mandates and subscriptions created for this customer will be canceled as well.

Parameters

Replace id in the endpoint URL by the customer’s ID, for example cst_8wmqcHMN4U.

Access token parameters

If you are using organization access tokens or are creating an OAuth app, the testmode parameter is also available.

testmodebooleanoptional

Response

204 No Content

Example

Request

1
2
curl -X DELETE https://api.mollie.com/v1/customers/cst_8wmqcHMN4U \
    -H "Authorization: Bearer test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM

Response

1
HTTP/1.1 204 No Content