Documents
Documents#index
Retrieves all firm documents
Query Parameters:
Search: returns documents filtered by title.
Response:
Returns a 200 OK with an array of documents:
Documents#show
Returns a single document
Response:
Returns a 200 OK with a single contact:
Documents#download
Generates a 1 hour public url for the document to be downloaded.
Response:
Returns a 200 OK with a temporary url:
Documents#create
Creates a new document. Keep in mind to send document data inside a document root key.
You should pass a JSON with the following parameters:
title string
filename string This needs to include the extension of the doc i.e. pdf.pdf, doc.doc
base64_data string File data should be sent as strict base 64 data
description string
client_id integer
matter_id integer
Response:
Returns a 201 created.
Last updated