GET api/medistreamprogramstepapi/steps/{programId}?active={active}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| programId | globally unique identifier |
Required |
|
| active | boolean |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of MediStreamProgramStepViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| program_id | globally unique identifier |
Required |
|
| code | integer |
Required Range: inclusive between 0 and ∞ |
|
| name | string |
Required |
|
| medistream_program_step_type_id | globally unique identifier |
Required |
|
| active | boolean |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"id": "a5754611-6f54-465c-9f66-7bcbc1908dea",
"program_id": "66f0ff7b-afb7-4387-ab44-58ab5ab9ef7d",
"code": 3,
"name": "sample string 4",
"medistream_program_step_type_id": "c6152afa-588e-437a-91c6-d81b238bbf61",
"active": true
},
{
"id": "a5754611-6f54-465c-9f66-7bcbc1908dea",
"program_id": "66f0ff7b-afb7-4387-ab44-58ab5ab9ef7d",
"code": 3,
"name": "sample string 4",
"medistream_program_step_type_id": "c6152afa-588e-437a-91c6-d81b238bbf61",
"active": true
}
]
application/xml, text/xml
Sample:
<ArrayOfmedistream_program_step xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
<medistream_program_step>
<active>true</active>
<code>3</code>
<id>a5754611-6f54-465c-9f66-7bcbc1908dea</id>
<medistream_program_step_type_id>c6152afa-588e-437a-91c6-d81b238bbf61</medistream_program_step_type_id>
<name>sample string 4</name>
<program_id>66f0ff7b-afb7-4387-ab44-58ab5ab9ef7d</program_id>
</medistream_program_step>
<medistream_program_step>
<active>true</active>
<code>3</code>
<id>a5754611-6f54-465c-9f66-7bcbc1908dea</id>
<medistream_program_step_type_id>c6152afa-588e-437a-91c6-d81b238bbf61</medistream_program_step_type_id>
<name>sample string 4</name>
<program_id>66f0ff7b-afb7-4387-ab44-58ab5ab9ef7d</program_id>
</medistream_program_step>
</ArrayOfmedistream_program_step>