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": "9e0f813b-07ac-4618-bb9a-d701eec00825",
"program_id": "e7853d66-9ecc-44a5-86f6-866cb85e8e7c",
"code": 3,
"name": "sample string 4",
"medistream_program_step_type_id": "5ee5d2cc-6bd8-437c-8615-4f0ca892af06",
"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>9e0f813b-07ac-4618-bb9a-d701eec00825</id> <medistream_program_step_type_id>5ee5d2cc-6bd8-437c-8615-4f0ca892af06</medistream_program_step_type_id> <name>sample string 4</name> <program_id>e7853d66-9ecc-44a5-86f6-866cb85e8e7c</program_id> </medistream_program_step>