Transactions
Transactions are all the deposits and withdrawals from your bank account synced in your Lancerkit account. Use the transactions API to list, create or update contacts within your Lancerkit account.
API endpoints
List transactions
GET
https://api.lancerkit.com/transactions
List all the transactions on your account
Query Parameters
search
String
A query to filter the transactions list
page
Number
Get a transaction
GET
https://api.lancerkit.com/transactions/:id
Get a specific transaction from your account
Path Parameters
id
String
The id of the transaction
Delete transactions
DELETE
https://api.lancerkit.com/transactions
Delete some transactions from your account
Request Body
ids
String
The ids of the transactions to delete
Edit a transaction
POST
https://api.lancerkit.com/transactions/:id
Edit an existing transaction
Path Parameters
id
String
The id of the transaction
Request Body
date
String
currency
String
amount
String
counterpart
String
description
String
Last updated