Atlas API
API för att komma åt modulerna i Atlas. API:et använder samma rättigheter som webbgränssnittet, så API-användaren måste ha rättighet att komma åt modulen
FormatXML
list_posts
Den här funktionen listar poster i databasen för den angivna modulen. Svaret innehåller de fält som finns i databasen för modulen.
Request
GET /admin/api/plain/atlas
Attributes
- mandatory
Data format: integer
Example: 20
How many posts do you want to show? - mandatory
Data format: integer
Example: 1
From which post do you want to start listing? - mandatory
Data format: string
Example: faq
The name of the module you want to list - optional
Data format: string
Example: json
What format should the response be in, valid values are 'xml' and 'json'
Example request
GET /admin/api/plain/atlas?method=list_posts&show=20&start=1&module=faq&hash=xxxxx
Response success: 200
HTTP/1.1 200
Content-Type: application/xml<list_posts> <response> <post> <headline>Headline of post</headline> <category>Category of post</category> <text>Text of post</text> </post> </response> <status>success</status> </list_posts>