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": "6961c3b5-69da-4310-b0e3-c1c65807ac20",
"program_id": "b1cc5f1b-a226-45ea-9636-e86b7dfac722",
"mediwave_program_step_type_id": "03e48955-beda-46a1-a215-3576369e0fca",
"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>6961c3b5-69da-4310-b0e3-c1c65807ac20</id> <mediwave_program_step_type_id>03e48955-beda-46a1-a215-3576369e0fca</mediwave_program_step_type_id> <name>sample string 6</name> <program_id>b1cc5f1b-a226-45ea-9636-e86b7dfac722</program_id> </mediwave_program_step>