Atoka API User Reference

Notes to Accounts package "Sections"

API tokens are configured to access only the packages each user needs; this means you might not have access to the content of this package. Ask your sales contact!

Available fields
Description
Data
Used by filters
Facet
Match
Stats
items[].content

content of the section

"string" -
items[].id

unique string identifier of this section, can be used as id attribute in html tags

"string" -
items[].sections[]

list of sub sections contained in this folder

{"foo": "bar"} -
items[].title

Title of the section

"string" -
items[].type

type of section. If it is a table, you will find in content this section text content; in case it's a folder, it will have a an array of objects with this very same structure called subSections.

"table", "folder" -
Example JSON fragment for package
{
"items": [
{
"id": "foo",
"title": "foo",
"type": "table",
"content": "foo",
"sections": [
{
},
...
]
},
...
]
}