Search for an email thread by the identifier.
- Sandbox APIhttps://api-sandbox.lawvu.com/account-apis/v1/emails/threads
- Production APIhttps://api.lawvu.com/account-apis/v1/emails/threads
const resp = await fetch(
`https://api-sandbox.lawvu.com/account-apis/v1/emails/threads`,
{method: 'GET'}
);
const data = await resp.text();
console.log(data);OK
Array [
]
Response
[
{
"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
}
]