curl --request GET \
--url https://api.openint.dev/v0/unified/accounting/account \
--header 'x-apikey: <api-key>' \
--header 'x-connection-id: <api-key>'
{
"next_cursor": "<string>",
"has_next_page": true,
"items": [
{
"id": "<string>",
"number": "<string>",
"name": "<string>",
"type": "<string>",
"subAccount": true,
"accountType": "<string>",
"accountSubType": "<string>",
"currentBalance": 123,
"currencyRef": {
"value": "<string>",
"name": "<string>"
},
"metaData": {
"createTime": "<string>",
"lastUpdatedTime": "<string>"
}
}
]
}
full
, incremental
Successful response
The response is of type object
.
curl --request GET \
--url https://api.openint.dev/v0/unified/accounting/account \
--header 'x-apikey: <api-key>' \
--header 'x-connection-id: <api-key>'
{
"next_cursor": "<string>",
"has_next_page": true,
"items": [
{
"id": "<string>",
"number": "<string>",
"name": "<string>",
"type": "<string>",
"subAccount": true,
"accountType": "<string>",
"accountSubType": "<string>",
"currentBalance": 123,
"currencyRef": {
"value": "<string>",
"name": "<string>"
},
"metaData": {
"createTime": "<string>",
"lastUpdatedTime": "<string>"
}
}
]
}