Groups
Delete Groups
You can delete a group using the standard REST endpoint with its id.
Delete Group
DELETE
`/v1/groups/:group`
Delete a single group using its id.
Groups
You can delete a group using the standard REST endpoint with its id.
Delete a single group using its id.
const response = await fetch("https://api.packagex.io/v1/groups/grp_rEMzyCyxJzuBzN4LyurAJV", {
method: "DELETE",
headers: {
"PX-API-KEY": process.env.PX_API_KEY,
"Content-Type": "application/json",
},
});