v1
latestOpenAPI 3.0.12026-07-22120163333.7 KBCommunication
SMS History
Returns text message history entries for the given lead. Lead must belong to the caller's team.
get/v1.0/communication/text
Query parameters
leadIdinteger required
ID of the lead whose text history to return.
offsetinteger
Zero-based index of the first entry to return.
limitinteger
Number of entries per page.
currentIdinteger
This parameter is used for page turning. When searching by ID is invoked, the interface would starts from this ID, and retrieve data sequentially. It is recommended to use this parameter as a replacement for offset to turn the page within the limit.
Headers
Authorizationstring required
Bearer [access_token]
Response
Text message history entries for the lead.
Example response
{
"texts": [
{
"direction": "Outbound",
"textOutcome": "Delivered",
"textType": "Auto",
"textContent": "Content"
}
]
}