Documents
Documents are all the invoices, quotes, contracts, and other files you have stored in your Lancerkit account. Use the documents API to list, create or update contacts within your Lancerkit account.
API endpoints
List documents
GET
https://api.lancerkit.com/documents
List all the documents on your account
Query Parameters
search
String
A query to filter the documents list
page
Number
Get a document
GET
https://api.lancerkit.com/documents/:id
Get a specific document from your account
Path Parameters
id
String
The id of the document
Delete documents
DELETE
https://api.lancerkit.com/documents
Delete some documents from your account
Request Body
ids
String
The ids of the documents to delete
Edit a document
POST
https://api.lancerkit.com/documents/:id
Edit an existing document
Path Parameters
id
String
The id of the document
Request Body
type
String
Invoice / Quote / Charge / Other
reference
String
date
String
currency
String
amount
String
contact
String
The ID of the contact
Create a document
POST
https://api.lancerkit.com/documents/new
Create a new document
Path Parameters
id
String
The id of the document
Request Body
type
String
Invoice / Quote / Charge / Other
reference
String
date
String
currency
String
amount
String
contact
String
The ID of the contact
Last updated