# Delete a customer destination account. `DELETE https://api.leapa.co/v2/customers/{customer_id}/destinations/{account_id}` Send your API key as a bearer token in the `Authorization` header. ## Path parameters - `customer_id` · _string_ · **required** Example: `cus_3d8e51fa20` - `account_id` · _string_ · **required** Example: `acc_62f3a8d15b` ## Response 200 - `id` · _string_ — The Account ID - `object` · _string_ — The object name - `deleted` · _boolean_ — Flag indicating that the account has been deleted. ```json { "id": "obj_5f21c8a40b", "object": "string", "deleted": false } ``` ## Status codes - `200` OK - `400` Bad request - `401` Unauthorized - `402` Payment required - `403` Forbidden - `404` Not found - `428` Precondition required - `500` Server error ## Example ```bash curl -X DELETE "https://api.leapa.co/v2/customers/cus_3d8e51fa20/destinations/acc_62f3a8d15b" \ -H "Authorization: Bearer $LEAPA_API_KEY" \ -H "Accept: application/json" ``` --- _Generated from the Leapa documentation at leapa.co/docs._