Gets paged email threads ordered by last modified date
- Sandbox APIhttps://api-sandbox.lawvu.com/account-apis/v1/emails/threads/page
- Production APIhttps://api.lawvu.com/account-apis/v1/emails/threads/page
const resp = await fetch(
`https://api-sandbox.lawvu.com/account-apis/v1/emails/threads/page`,
{method: 'GET'}
);
const data = await resp.text();
console.log(data);Response
{
"threads": [
{
"threadIdentifier": "string",
"track": true,
"client": "Outlook",
"matterId": 0,
"matterNumber": "string",
"matterName": "string",
"matterStatus": "string",
"matterIsDeleted": true,
"fileEntryId": 0,
"fileId": 0,
"filePath": "string",
"contractId": 0,
"contractName": "string",
"contractStatus": "string",
"contractIsDeleted": true
}
],
"nextPageCursor": 0
}