# Delete rev share

`DELETE https://api.nexus.gg/v1/manage/scheduled-rev-shares/{scheduledRevShareId}`

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.

## Authorizations

- `X-SHARED-SECRET` (string, header, required) - Send your **secret** API key (`nexus_sk_...`) in the `X-SHARED-SECRET` header. [Generate one](/authentication/api-keys/) in the Publisher Dashboard.

## Path parameters

- `scheduledRevShareId` (string, required) - The scheduled rev share's id (ScheduledRevShare.uuid) to delete.

## Query parameters

- `groupId` (string) - 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.

## Responses

### 200

The schedule was soft-deleted. No response body.

### 404

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