Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Current »

Overview

The /1/guide/section endpoint provides access to the guide chapter's section content.

Required Headers

  • Authorization: Token token="<your session token here>"
  • Content-Type: application/json
  • User-Agent: rest-api
  • X-ClientId: <the client id here> or X-ClientCode: <the client code here>


Optional Headers

Arguments

FieldTypeOptionalDescription
chapter_num32-bit IntegerRequiredOne of the chapter numbers from (0..chapter count - 1) retrieved from the /1/guide/index - GET endpoint
section_num32-bit IntegerRequiredOne of the chapter numbers from (0..section count - 1) retrieved from the /1/guide/index - GET endpoint

Fields

FieldTypeOptionalDescription
content
stringRequired
title
stringRequired

Example

curl -X GET \
-H 'Authorization: Token token="9319224d0002e7a32b26c0686c42a0bf"' \
-H "Accept: application/json" \
-H "User-Agent: rest-api" \
-H "Content-Type: application/json" \
-H "X-ClientId: 1" \

https://data-sandbox.vbmappapp.com/1/guide/section?chapter_num=1\&section_num=0

Response

{
  "response": {
    "content": "There are five components of the VB-MAPP presented in this Guide. The first is the <B>VB-MAPP Milestones Assessment</B>, ... necessary intervention are included. ",
    "title": "About the VB-MAPP"
  }
}
  • No labels