POST api/Courses/retrieve_academy_course_tier_options
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of tier_option| Name | Description | Type | Additional information |
|---|---|---|---|
| identifier | globally unique identifier |
None. |
|
| course | globally unique identifier |
None. |
|
| tier | integer |
None. |
|
| number_choices | integer |
None. |
|
| route | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"identifier": "0bfbb9c0-f4fc-4f2c-a68c-1b6f2ebd277d",
"course": "c831b5b2-b235-47f8-96c6-380ef03d618e",
"tier": 1,
"number_choices": 1,
"route": 1
},
{
"identifier": "0bfbb9c0-f4fc-4f2c-a68c-1b6f2ebd277d",
"course": "c831b5b2-b235-47f8-96c6-380ef03d618e",
"tier": 1,
"number_choices": 1,
"route": 1
}
]
application/xml, text/xml
Sample:
<ArrayOftier_option xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Totara.WEBAPI">
<tier_option>
<course>c831b5b2-b235-47f8-96c6-380ef03d618e</course>
<identifier>0bfbb9c0-f4fc-4f2c-a68c-1b6f2ebd277d</identifier>
<number_choices>1</number_choices>
<route>1</route>
<tier>1</tier>
</tier_option>
<tier_option>
<course>c831b5b2-b235-47f8-96c6-380ef03d618e</course>
<identifier>0bfbb9c0-f4fc-4f2c-a68c-1b6f2ebd277d</identifier>
<number_choices>1</number_choices>
<route>1</route>
<tier>1</tier>
</tier_option>
</ArrayOftier_option>