PXM Products/
Extending PXM Products/
PXM Product Templates API/
Delete a Template

Delete a Template

DELETE Delete a Template

https://api.moltin.com/v2/flows/:id

Parameters

Path parameters

NameRequiredTypeDescription
idRequiredstringSpecifies the ID for the template you want to delete.

Headers

NameRequiredTypeDescription
AuthorizationRequiredstringThe Bearer token required to get access to the API.

Request Examples

Curl

curl -X DELETE https://api.moltin.com/v2/flows/:id \
    -H "Authorization: Bearer XXXX"

JavaScript SDK

const MoltinGateway = require("@moltin/sdk").gateway;
const Moltin = MoltinGateway({
    client_id: "X",
});
const flowId = "XXX";
Moltin.Flows.Delete(flowId).then((flow) => {
    // Do something
});

Response Example

204 No Content



Was this helpful?

Previous
Update a Template

Learn

Docs