...
The response to this endpoint contains a list an array of chapters, each of which in-turn contains the sections and each section contains the number of sub sections in that section.
This information is used to query the remaining /1/guide/... APIs.
Info |
---|
|
- Authorization: Token token="<your session token here>"
- User-Agent: dmtd-rest-api
- Content-Type: application/json
|
Info |
---|
|
Field | Type | Optional | Description |
---|
sections | Array | Required | An array of sections in the chapter | title | string | Required | This is equal to title from /1/guide/chapter - GET |
|
Info |
---|
|
curl -X GET \ -H 'Authorization: Token token="9319224d0002e7a32b26c0686c42a0bf"' \ -H "Accept: application/json" \ -H "User-Agent: dmtd-rest-api" \ -H "Content-Type: application/json" \ httphttps://dataapi-sandbox.vbmappappdatamtd.com/1/guide/index |
Info |
---|
| |
{
"response": [
{
"sections": [
],
"title": "Acknowledgements"
},
{
"sections": [
{
"title": "About the VB-MAPP"
},
{
"title": "Research Using the VB-MAPP"
},
{
"title": "The Importance of Assessment"
}, ... ],
"title": "Task Analysis and Skills Tracking: Level 3 (30-48 Months)"
}
],
"count": 16
} |
...