v4

OpenAPI 3.1.02026-08-01207318738.7 KB
Schedules

Transfer schedule ownership

put/api/v1/schedules/{scheduleId}/transfer-ownership

Path parameters

scheduleIdstring uuid required

The UUID of the scheduled task. Can be found in the schedule's URL after /schedules/.

Example:123e4567-e89b-12d3-a456-426614174000

The UUID of the scheduled task. Can be found in the schedule's URL after /schedules/.

Request body

userIdstring uuid required

The UUID of the user to transfer schedule ownership to. Use the List users endpoint to retrieve user IDs. The new owner must be a member of the same organization, not be the current owner, and have permission to view the dashboard associated with the schedule.

Example request

{
  "userId": "987fcdeb-51a2-43d7-9b56-254415f67890"
}

Response

Ownership transferred successfully

successboolean required

Whether the operation was successful

Example response

{
  "success": true
}