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": "389bc1cf-5f3e-42bf-b574-90b828a5a6f1",
"program_id": "7b750502-777b-4bb3-a251-744e819fdc45",
"mediwave_program_step_type_id": "a276a14d-2e42-4aa1-971e-b2df85b39fe0",
"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>389bc1cf-5f3e-42bf-b574-90b828a5a6f1</id> <mediwave_program_step_type_id>a276a14d-2e42-4aa1-971e-b2df85b39fe0</mediwave_program_step_type_id> <name>sample string 6</name> <program_id>7b750502-777b-4bb3-a251-744e819fdc45</program_id> </mediwave_program_step>