Skip to content

Soft-deletes a scheduled revenue-share window: the row is flagged deleted and stamped with deletedAt rather than removed. The response is 200 OK with no body.

Because the delete is soft, the window’s dates no longer count toward the 409 overlap check on future creates or edits: that check only looks at schedules where deleted = 0.

404 means no schedule with this scheduledRevShareId exists for the resolved group. Deleting the same schedule again returns 200, so the call is safe to retry.

X-SHARED-SECRET
required
stringheader

Send your secret API key (nexus_sk_...) in the X-SHARED-SECRET header. Generate one in the Publisher Dashboard.

scheduledRevShareId
required
string
Example
2ixlNNFdJh-9scoXek80w

The scheduled rev share’s id (ScheduledRevShare.uuid) to delete.

groupId
string
Example
V1StGXR8_Z5jdHi6B1LiO

Creator group the schedule belongs to. If your key is scoped to a single program, that group is always used regardless of this value; otherwise falls back to your default group when omitted.

The schedule was soft-deleted. No response body.

groupId did not match a creator group on your account, or scheduledRevShareId did not match any scheduled rev share for that group.

DELETE
/manage/scheduled-rev-shares/{scheduledRevShareId}
curl --request DELETE \
--url 'https://api.nexus.gg/v1/manage/scheduled-rev-shares/2ixlNNFdJh-9scoXek80w?groupId=V1StGXR8_Z5jdHi6B1LiO' \
--header 'X-SHARED-SECRET: nexus_sk_your_key_here'