DELETE
/
v1
/
customer
/
{customer_id}
curl --request DELETE \
  --url https://app.getswipe.in/api/partner/v1/customer/{customer_id} \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "message": "Customer added successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

customer_id
string
required

The customer ID to be deleted

Response

200
application/json
Success
success
boolean

Success flag

Example:

true

message
string

Response message

Example:

"Customer added successfully"