GET api/mediwaveprogramstepapi/step/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
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": "4b4590e6-efce-445c-925b-78aa306a7b19",
"program_id": "593573a0-248b-40e2-a3f8-eb63489c0c58",
"mediwave_program_step_type_id": "282dbc24-9e4d-4203-a663-ddd61980aea2",
"name": "sample string 6"
}
application/xml, text/xml
Sample:
<mediwave_program_step xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <code>2</code> <id>4b4590e6-efce-445c-925b-78aa306a7b19</id> <mediwave_program_step_type_id>282dbc24-9e4d-4203-a663-ddd61980aea2</mediwave_program_step_type_id> <name>sample string 6</name> <program_id>593573a0-248b-40e2-a3f8-eb63489c0c58</program_id> </mediwave_program_step>