Returns a page of communication timeline entries for the caller (or the caller’s team when teamView=true, requiring ACCESS_ALL_TEAM_LEADS permission), filtered by type and optional time range. The response is a page wrapper with totalCount, offset, limit, and pageData.
curl --request POST \
--url https://api.lofty.com/v1.0/agent/communication \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"type": "CALL",
"startTime": 946710000000,
"endTime": 946710000000,
"offset": 0,
"limit": 50,
"teamView": false
}
'{
"offset": 0,
"limit": 500,
"pageData": [
{}
],
"hasMore": true
}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.
Communication search request payload.
CALL, EMAIL OR TEXT
CALL, TEXT, EMAIL "CALL"
startTimestamp
946710000000
endTimestamp (The maximum time interval for a single query is 24 hours)
946710000000
offset default Value 0
0
limit default Value 10,max value 1000
50
search team lead's communication, default false
false
curl --request POST \
--url https://api.lofty.com/v1.0/agent/communication \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"type": "CALL",
"startTime": 946710000000,
"endTime": 946710000000,
"offset": 0,
"limit": 50,
"teamView": false
}
'{
"offset": 0,
"limit": 500,
"pageData": [
{}
],
"hasMore": true
}