GET api/mediwaveprogramstepapi/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 MediWaveProgramStepViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
Required |
|
| code | integer |
Required Range: inclusive between 0 and ∞ |
|
| id | globally unique identifier |
None. |
|
| program_id | globally unique identifier |
Required |
|
| mediwave_program_step_type_id | globally unique identifier |
Required |
|
| name | string |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"active": true,
"code": 2,
"id": "87a3fd82-4b3d-4136-8e7c-cd24d4ea5c6b",
"program_id": "b0253079-0e8d-4ca5-9dee-8033ad8aba21",
"mediwave_program_step_type_id": "eba40558-7364-4714-9053-1d152b86e705",
"name": "sample string 6"
},
{
"active": true,
"code": 2,
"id": "87a3fd82-4b3d-4136-8e7c-cd24d4ea5c6b",
"program_id": "b0253079-0e8d-4ca5-9dee-8033ad8aba21",
"mediwave_program_step_type_id": "eba40558-7364-4714-9053-1d152b86e705",
"name": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfmediwave_program_step xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
<mediwave_program_step>
<active>true</active>
<code>2</code>
<id>87a3fd82-4b3d-4136-8e7c-cd24d4ea5c6b</id>
<mediwave_program_step_type_id>eba40558-7364-4714-9053-1d152b86e705</mediwave_program_step_type_id>
<name>sample string 6</name>
<program_id>b0253079-0e8d-4ca5-9dee-8033ad8aba21</program_id>
</mediwave_program_step>
<mediwave_program_step>
<active>true</active>
<code>2</code>
<id>87a3fd82-4b3d-4136-8e7c-cd24d4ea5c6b</id>
<mediwave_program_step_type_id>eba40558-7364-4714-9053-1d152b86e705</mediwave_program_step_type_id>
<name>sample string 6</name>
<program_id>b0253079-0e8d-4ca5-9dee-8033ad8aba21</program_id>
</mediwave_program_step>
</ArrayOfmediwave_program_step>