Transactions
Get the transactions from a given accounting source
Authorizations
Query parameters
projectIdsstringRequired
Comma separated list of the project IDs to get transactions for
startDatestring · date-timeOptional
The beginning of the range from which to pull transactions
endDatestring · date-timeOptional
The ending of the range from which to pull transactions
Responses
200
Successful Operation
application/json
400
Invalid status value
application/json
get
GET //finance/transactions HTTP/1.1
Host: api.ecosuite.io
Authorization: YOUR_API_KEY
Accept: */*
{
"source": "text",
"transactions": {
"projectId": [
{
"accountType": "text",
"accountName": "text",
"debit": 1,
"credit": 1,
"transactionDate": "text"
}
]
}
}