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": "9dbc52c2-ce9d-46be-b6b7-b1821f9be18a",
"program_id": "0925cdd9-b2ea-400e-96cc-add3bf613f6f",
"mediwave_program_step_type_id": "de0754a6-3cf6-4f9a-a8e5-cb93d104c233",
"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>9dbc52c2-ce9d-46be-b6b7-b1821f9be18a</id> <mediwave_program_step_type_id>de0754a6-3cf6-4f9a-a8e5-cb93d104c233</mediwave_program_step_type_id> <name>sample string 6</name> <program_id>0925cdd9-b2ea-400e-96cc-add3bf613f6f</program_id> </mediwave_program_step>