POST
/
api
/
service
/
customer
/
delete
JavaScript
import Ivy from '@getivy/node-sdk';

const client = new Ivy({
  apiKey: 'My API Key',
});

const customer = await client.customers.delete({ id: 'id' });

console.log(customer.success);
{
  "success": true
}

Authorizations

X-Ivy-Api-Key
string
header
required

API key for authentication

Body

application/json

Response

200 - application/json

Successful response

The response is of type object.