Files
Get a file
Retrieves a specified file. The matterId in the route is used for authorisation only and is not cross-checked against the matter the file belongs to.
get/matters/{matterId}/documents/files/{fileId}
Path parameters
fileIdstring required
Unique identifier (GUID) of the file.
matterIdstring required
Response
When request is successful. Returns a 'File' object.
Example response
{
"id": "b471682e-fa17-4e46-b7fe-9b2b8fdcb3c2",
"versionId": "0f8fad5b-d9cb-469f-a165-70867728950e",
"name": "court filing",
"fileExtension": ".pdf",
"ownerId": "750eb5c5-ac0b-7d11-4997-e0ce9d8896c8",
"to": "recipient@email.com",
"from": "sender@email.com",
"dateCreated": "2022-04-23T14:00:00Z",
"dateModified": "2022-04-25T17:00:00Z",
"sizeBytes": 19104768,
"additionalData": {
"source": "Outlook",
"pageCount": 12,
"isSigned": true
}
}Changes
Changed in 1 of the 5 revisions of this API.1
- ○
added the non-success response with the status
400response-non-success-status-added
- ○