Skip to content

Get an email thread

Request

Search for an email thread by the identifier.

Query
clientstring

The email client (Gmail, Outlook)

threadIdentifierstring

The Id of the thread

const resp = await fetch(
  `https://api-sandbox.lawvu.com/account-apis/v1/emails/threads`,
  {method: 'GET'}
);

const data = await resp.text();
console.log(data);

Responses

OK

Body
Array [
threadIdentifierstring or null
trackboolean
clientstring

Options:

  • Outlook
  • Gmail
Enum:"Outlook""Gmail"
matterIdinteger or null, (int32)
matterNumberstring or null
matterNamestring or null
matterStatusstring or null
matterIsDeletedboolean
fileIdinteger or null, (int32)
filePathstring or null
contractIdinteger or null, (int32)
contractNamestring or null
contractStatusstring or null
contractIsDeletedboolean
fileEntryIdinteger or null, (int32)deprecated
]
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
  }
]