ACME API Documentation logo

Delete Auto Schedule

Delete a specified auto schedule

DELETEhttps://api.acme.com/api/auto-schedule/delete
Available on Premium, Business, Enterprise plans.

Delete a particular auto schedule. Provide the title of the schedule or "default" is used.

Header Parameters

Authorizationstringrequired
API Key of the Primary Profile.

Format: Authorization: Bearer API_KEY
Profile-Keystring
Profile Key of a User Profile.

Format: Profile-Key: PROFILE_KEY

Body Parameters

titlestringdefault: default

The title of the schedule to delete.

This should match a schedule title that was previously created using the Set Auto Schedule endpoint. If no title is provided, the system will attempt to delete the "default" schedule.

deleteLastScheduleDatebooleandefault: false

Reset the schedule's starting point to the current time.

When set to true, this will clear the last used schedule date, causing any new posts to be scheduled starting from the current time. Any posts that were already scheduled will remain unchanged and publish at their original times.

curl \
-H "Authorization: Bearer API Key" \
-H 'Content-Type: application/json' \
-d '{"title": "Schedule Title"}' \
-X DELETE https://api.acme.com/api/auto-schedule/delete
{
    status: "success",
    title: "Schedule Title"
}