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": "912a6a92-6a76-4eda-80ed-771ca85e5496",
"program_id": "1838de78-7de3-41c6-b7f8-97901cbc430c",
"code": 3,
"name": "sample string 4",
"medistream_program_step_type_id": "dd749334-6401-47f2-a406-7f183e626a60",
"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>912a6a92-6a76-4eda-80ed-771ca85e5496</id> <medistream_program_step_type_id>dd749334-6401-47f2-a406-7f183e626a60</medistream_program_step_type_id> <name>sample string 4</name> <program_id>1838de78-7de3-41c6-b7f8-97901cbc430c</program_id> </medistream_program_step>