Obtaining the Session Token
All VB-Mapp Content Server REST API calls require an authorization token to allow access to the server. The token can be found on the User page when logged in at http://vbmappdata.com.
Formatting the REST Request
...
- Authorization: Token token="<your session token here>"
- Content-Type: application/json
- User-Agent: dmid-rest-api
- X-ClientId: <the client id here>
- X-ClientCode: <the client code here>
...
- Accept-Language: <language> – Currently 'en' and (English), 'es' are supported (Spanish) and 'fr' coming soon(French) are supported
Info |
---|
The 'X-ClientId' and 'X-ClientCode' header is not required on all requests. However, when they are required either of the two may be provided to authenticate the call, both are not simultaneously required. X-ClientCode equates the code field that is provided when the client record is created. This allows you to store a unique value in the code field, for example your primary key, and thus no changes to your data model are required to integrate the REST service. |
...
Panel |
---|
curl -X GET \ |
...