GET api/medistreamprogramstepapi/step/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
MediStreamProgramStepViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| program_id | globally unique identifier |
Required |
|
| code | integer |
Required Range: inclusive between 0 and ∞ |
|
| name | string |
Required |
|
| medistream_program_step_type_id | globally unique identifier |
Required |
|
| active | boolean |
Required |
Response Formats
application/json, text/json
Sample:
{
"id": "e922acbf-6d62-470d-a898-3f3161ec51c6",
"program_id": "ebb4a6d8-c1fc-4931-81d3-d19386c9d84a",
"code": 3,
"name": "sample string 4",
"medistream_program_step_type_id": "3d1be168-d71a-4150-b973-33e211c5b65a",
"active": true
}
application/xml, text/xml
Sample:
<medistream_program_step xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <code>3</code> <id>e922acbf-6d62-470d-a898-3f3161ec51c6</id> <medistream_program_step_type_id>3d1be168-d71a-4150-b973-33e211c5b65a</medistream_program_step_type_id> <name>sample string 4</name> <program_id>ebb4a6d8-c1fc-4931-81d3-d19386c9d84a</program_id> </medistream_program_step>