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": "3eb75da9-864e-40ac-89dd-966857380ce7",
"program_id": "d3fbada3-b28d-479b-b511-c3c3e236634c",
"mediwave_program_step_type_id": "a3cea5e1-4905-4533-9b6e-feae98926f0b",
"name": "sample string 6"
},
{
"active": true,
"code": 2,
"id": "3eb75da9-864e-40ac-89dd-966857380ce7",
"program_id": "d3fbada3-b28d-479b-b511-c3c3e236634c",
"mediwave_program_step_type_id": "a3cea5e1-4905-4533-9b6e-feae98926f0b",
"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>3eb75da9-864e-40ac-89dd-966857380ce7</id>
<mediwave_program_step_type_id>a3cea5e1-4905-4533-9b6e-feae98926f0b</mediwave_program_step_type_id>
<name>sample string 6</name>
<program_id>d3fbada3-b28d-479b-b511-c3c3e236634c</program_id>
</mediwave_program_step>
<mediwave_program_step>
<active>true</active>
<code>2</code>
<id>3eb75da9-864e-40ac-89dd-966857380ce7</id>
<mediwave_program_step_type_id>a3cea5e1-4905-4533-9b6e-feae98926f0b</mediwave_program_step_type_id>
<name>sample string 6</name>
<program_id>d3fbada3-b28d-479b-b511-c3c3e236634c</program_id>
</mediwave_program_step>
</ArrayOfmediwave_program_step>