import { PriceOS } from "priceos";import type { MyFeatures } from "./priceos.types";const priceos = new PriceOS<MyFeatures>(process.env.PRICEOS_API_KEY!);const result = await priceos.customers.delete("customer_123");
Copy
{ "id": "<string>"}
Customers
Delete Customer
Delete a customer record.
DELETE
/
v1
/
customers
/
{customerId}
Node.js
Copy
import { PriceOS } from "priceos";import type { MyFeatures } from "./priceos.types";const priceos = new PriceOS<MyFeatures>(process.env.PRICEOS_API_KEY!);const result = await priceos.customers.delete("customer_123");