Skip to main content
PUT
/
v1
/
schedules
/
{scheduleId}
/
transfer-ownership
Transfer schedule ownership
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
}

Authorizations

Authorization
string
header
required

Use either an Organization API Key or Personal Access Token (PAT). Include in the Authorization header as: Bearer YOUR_TOKEN

Path Parameters

scheduleId
string<uuid>
required

Schedule ID

Body

application/json
userId
string<uuid>
required

New owner user ID

Response

Ownership transferred successfully

success
boolean
Example:

true