Skip to main content
POST
/
api
/
leads
/
{id}
/
schedule-outbound
/
ScheduleWithDatetime
curl --request POST \
  --url https://api.trysela.com/api/leads/<lead-id>/schedule-outbound/ \
  --header 'Authorization: Token <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
    "next_outbound_datetime": "2025-05-24T10:00:00+00:00"
  }'

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Path Parameters

id
integer
required

A unique integer value identifying this lead.

Body

next_outbound_datetime
string | null

Datetime in the future with '%Y-%m-%dT%H:%M:%S%z' format. If not provided, the next available time will be scheduled.

Response

Outbound scheduled successfully