👋 Welcome to the new Omni docs! We're still migrating, but the old docs are available at docs-legacy.omni.co.
cURL
curl --request PUT \ --url https://{instance}.omniapp.co/api/v1/schedules/{scheduleId}/remove-recipients \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "emails": [ "jsmith@example.com" ], "userIds": [ "3c90c3cc-0d44-4b50-8888-8dd25736052a" ] } '
{ "removedRecipientsCount": 123, "success": true }
Remove recipients from email schedule
Use either an Organization API Key or Personal Access Token (PAT). Include in the Authorization header as: Bearer YOUR_TOKEN
Bearer YOUR_TOKEN
Schedule ID
Email addresses to remove
User IDs to remove
Recipients removed successfully
Was this page helpful?