List a page of account codes where the ID is greater than the optionally supplied fromthisid parameter
Limited to those codes the user can see. Returned in ID order.
Path parameters
-
The ID that is previous to the one to start from e.g. if IDs are 1,2,3 fromthisid as 1 will return 2,3
GET
/accountcode/list/{fromthisid}
curl \
-X GET https://YOURSITE.infoodle.com/apiv2/accountcode/list/4 \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": 123,
"accountcode": "200-D",
"name": "Donations",
"incomeexpense": 1,
"taxable": 1,
"salestax": 1,
"sort_order": 1,
"xero_account_id": "62f28bd8-3d47-4302-88a3-dc6ff53d8126",
"xero_status": "OK",
"primary_for_duplicates": 1,
"for_group_id": 28
}
]
Response examples (400)
{
"error": "Invalid field contents",
"errors": {
"errorfield": [
{
"code": 400,
"message": "Invalid value supplied for field"
}
]
}
}
Response examples (401)
{
"error": "Unauthorised"
}
Response examples (403)
{
"error": "Invalid Permission"
}