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
https://developer.floqast.app/_mock/content/api-reference/openapi/
https://fq-api.floqast.app/
https://fq-api.eu.floqast.app/
https://fq-api.au.floqast.app/
This API endpoint retrieves amortization entries for a designated month and year, providing a concise overview of amortization activities within the specified period. It facilitates access to detailed records of amortization transactions, which include the systematic allocation of costs for intangible assets over their useful life, enabling thorough analysis and financial tracking.
Specifies the month for which the amortization should be retrieved. Valid values are the names of the months. Must be used in conjunction with filter[year].
Specifies the year for which the amortization should be retrieved. It should be a four-digit numerical value. Must be used in conjunction with filter[month].
Comma separated entity ids for which the amortizations 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
https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/amortization/items
https://fq-api.floqast.app/api/v1/amortization/items
https://fq-api.eu.floqast.app/api/v1/amortization/items
https://fq-api.au.floqast.app/api/v1/amortization/items
curl -i -X GET \
'https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/amortization/items?allowRedirect=true&filter%5BentityIds%5D=5e94d5b63f557b001420bbe1%2C5e94d5b63f557b001420bbe2&filter%5Bmonth%5D=march&filter%5Byear%5D=2023&page%5Bcursor%5D=5e94d5b63f557b001420bbe3&page%5Bsize%5D=12000' \
-H 'x-api-key: YOUR_API_KEY_HERE'
{ "data": [ { … } ], "links": { "self": "/api/v1/amortization/items?filter[month]=january&filter[year]=2023&page[size]=1000&page[cursor]=5e94d5b63f557b001420bbe3", "next": "/api/v1/amortization/items?filter[month]=january&filter[year]=2023&page[size]=1000&page[cursor]=63b88f2cb1f05200179e7857" } }
https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/amortization/reconciliations/{reconciliationId}
https://fq-api.floqast.app/api/v1/amortization/reconciliations/{reconciliationId}
https://fq-api.eu.floqast.app/api/v1/amortization/reconciliations/{reconciliationId}
https://fq-api.au.floqast.app/api/v1/amortization/reconciliations/{reconciliationId}
curl -i -X PATCH \
'https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/amortization/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
https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/amortization/reconciliations
https://fq-api.floqast.app/api/v1/amortization/reconciliations
https://fq-api.eu.floqast.app/api/v1/amortization/reconciliations
https://fq-api.au.floqast.app/api/v1/amortization/reconciliations
curl -i -X GET \
'https://developer.floqast.app/_mock/content/api-reference/openapi/api/v1/amortization/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/amortization/reconciliations?filter[reconciliationIds]=615bcdc00000000000020000,615bcdc00000000000020001&filter[journalEntryStatus]=PROCESSING&page[size]=1000&page[cursor]=5e94d5b63f557b001420bbe3", "next": "/api/v1/amortization/reconciliations?filter[reconciliationIds]=615bcdc00000000000020000,615bcdc00000000000020001&filter[journalEntryStatus]=PROCESSING&page[size]=1000&page[cursor]=63b88f2cb1f05200179e7857" } }