Need help? Get answers from the docs with Omni's in-app AI! Log in to your Omni instance and open the Omni Agent in the sidebar.
curl --request PUT \
--url https://{instance}.omniapp.co/api/v1/schedules/{scheduleId}/transfer-ownership \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'{
"success": true
}curl --request PUT \
--url https://{instance}.omniapp.co/api/v1/schedules/{scheduleId}/transfer-ownership \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'{
"success": true
}Transfers ownership of a schedule from one user to another user in the same organization. New ownership will be immediate and can’t be reversed using this endpoint. How ownership transfer affects schedule execution depends on the type of destination the schedule uses, and for email destinations, whether the Personalize delivery with the recipient’s user attributes is enabled:Documentation Index
Fetch the complete documentation index at: https://docs.omni.co/llms.txt
Use this file to discover all available pages before exploring further.
| Slack, SFTP, & Webhooks | Email without personalization | Email with personalization | |
|---|---|---|---|
| Future jobs are executed by… | New owner | New owner | Each recipient |
| Permissions, data access, & user attributes are based on… | New owner | New owner | Each recipient |
| Output is generated using… | New owner access | New owner access | Recipient access |
Can be either an Organization API Key or Personal Access Token (PAT).
Include in the Authorization header as: Bearer YOUR_TOKEN
The ID of the schedule. To find a schedule's ID:
The schedule's ID is in the page's URL, after /schedules/. For example, the schedule ID in this URL is 123e4567-e89b-12d3-a456-426614174000:
https://blobsrus.omniapp.co/dashboards/e23ebaa0/schedules/123e4567-e89b-12d3-a456-426614174000The ID of the user to transfer schedule ownership to. Use the List users endpoint to retrieve user IDs.
The new owner must:
Ownership transferred successfully
true
Was this page helpful?