Method returns a list of conference tracks.
Title | get Tracks |
Url | BASE_URL + / + getTracks |
Method | GET |
Params | NO |
Error Response | HTML error response |
Array of type objects.
{
"tracks": [
{"trackID": 1,...},
{"trackID": 2,...},
{"trackID": 3,...}
]
}
A JSON track is an object structured in the following way:
Property | Type | Description |
trackId | integer | A unique and immutable ID of a track |
trackName | string | Name of the track |
order | real | Suggestion regarding how to order entities |
deleted | BOOL | true - object should be deleted on mobile device |
{ "tracks": [ { "trackId": 1, "trackName": "Business and Strategy", "order": null, "deleted": false }, { "trackId": 2, "trackName": "Business Showcase", "order": null, "deleted": false }, .... ] }