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": "8d627c48-0551-453d-a5a6-e35f089ce8ff",
"program_id": "2d5b1859-e606-4f5b-841d-ead2b0e37750",
"mediwave_program_step_type_id": "8e5b0d22-aee8-4a3e-b2b5-0839aff1c764",
"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>8d627c48-0551-453d-a5a6-e35f089ce8ff</id> <mediwave_program_step_type_id>8e5b0d22-aee8-4a3e-b2b5-0839aff1c764</mediwave_program_step_type_id> <name>sample string 6</name> <program_id>2d5b1859-e606-4f5b-841d-ead2b0e37750</program_id> </mediwave_program_step>