Search account codes
Limited to those the user can see. Filtered by the posted fields. 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
POST
/accountcode/search/{fromthisid}
curl \
-X POST https://YOURSITE.infoodle.com/apiv2/accountcode/search/4 \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"search":[{"by":"name","value":"Test Item"}]}'
Request examples
{
"search": [
{
"by": "name",
"value": "Test Item"
}
]
}
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 (401)
{
"error": "Unauthorised"
}
Response examples (403)
{
"error": "Invalid Permission"
}