Returns appointments attached to the given lead. Caller must have manage permission on the lead.
curl --request GET \
--url https://api.lofty.com/v1.0/appts \
--header 'Authorization: <authorization>'[
{
"id": 123,
"descr": "<string>",
"address": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"lastUpdate": "2023-11-07T05:31:56Z",
"deadline": 123,
"endTime": 123,
"allDay": true,
"finishFlag": true,
"deleteFlag": true,
"overdue": true,
"finishTime": 123,
"leadId": 123,
"assignToUid": 123,
"assignRoleType": 123,
"creatorId": 123
}
]Documentation Index
Fetch the complete documentation index at: https://developer.lofty.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer [access_token]
ID of the lead whose appointments to return.
x >= 1Appointments for the lead.
The Id of the appointment
The description of the appointment
The location of the appointment
The create time of the appointment
The last update time of the appointment
The start time of the appointment
The end time of the appointment
Whether the appointment time is all day
If the appointment is finished or not
If the appointment is deleted or not
If the appointment is overdue or not
The finish time of the task
The lead(Id) associated with the appointment
The user's Id of the appointment assigned to
The user role of the appointment assigned to
The user ID of this appointment creator
curl --request GET \
--url https://api.lofty.com/v1.0/appts \
--header 'Authorization: <authorization>'[
{
"id": 123,
"descr": "<string>",
"address": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"lastUpdate": "2023-11-07T05:31:56Z",
"deadline": 123,
"endTime": 123,
"allDay": true,
"finishFlag": true,
"deleteFlag": true,
"overdue": true,
"finishTime": 123,
"leadId": 123,
"assignToUid": 123,
"assignRoleType": 123,
"creatorId": 123
}
]