This API endpoint takes a reconciliationId and journal entry status information, and updates depreciation reconciliations entries.
Requests to FloQast's API must be authenticated using an API key. The API key must be included in the x-api-key
header of each request and can be generated in the FloQast application. The key should also have the correct permissions to access the API endpoints you are using. Directions to generate an API key
curl -i -X PATCH \
'https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/depreciation/reconciliations/5e94d5b63f557b001420bbe3?allowRedirect=true' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"data": {
"journalEntryStatus": "POSTED",
"journalEntryId": "615bcdc00000000000000302",
"journalEntryTimestamp": "2024-03-29T21:36:43.309+00:00"
}
}'
{ "success": true }
Comma separated reconciliation ids for which the reconciliations should be retrieved
Status of journal entry for which the reconciliations should be retrieved
The number of items to return. If not specified, the API will return a default of 30,000 items, which is the maximum value.
Pagination cursor that indicates the starting position for the next set of items
curl -i -X GET \
'https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/depreciation/reconciliations?allowRedirect=true&filter%5BjournalEntryStatus%5D=PROCESSING&filter%5BreconciliationIds%5D=5e94d5b63f557b001420bbe1%2C5e94d5b63f557b001420bbe2&page%5Bcursor%5D=5e94d5b63f557b001420bbe3&page%5Bsize%5D=12000' \
-H 'x-api-key: YOUR_API_KEY_HERE'
{ "data": [ { … } ], "links": { "self": "/api/v1/depreciation/reconciliations?filter[reconciliationIds]=615bcdc00000000000020000,615bcdc00000000000020001&filter[journalEntryStatus]=PROCESSING&page[size]=1000&page[cursor]=5e94d5b63f557b001420bbe3", "next": "/api/v1/depreciation/reconciliations?filter[reconciliationIds]=615bcdc00000000000020000,615bcdc00000000000020001&filter[journalEntryStatus]=PROCESSING&page[size]=1000&page[cursor]=63b88f2cb1f05200179e7857" } }