GET api/medistreamprogramstepapi/step/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

MediStreamProgramStepViewModel
NameDescriptionTypeAdditional 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": "ca1a92d8-b539-4257-815e-46b9d5f47b23",
  "program_id": "ecdcd906-a245-45a1-b14f-b24aa72b2e6f",
  "code": 3,
  "name": "sample string 4",
  "medistream_program_step_type_id": "0318fc1e-d6ec-4d7e-a09b-8ec7ef3caa43",
  "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>ca1a92d8-b539-4257-815e-46b9d5f47b23</id>
  <medistream_program_step_type_id>0318fc1e-d6ec-4d7e-a09b-8ec7ef3caa43</medistream_program_step_type_id>
  <name>sample string 4</name>
  <program_id>ecdcd906-a245-45a1-b14f-b24aa72b2e6f</program_id>
</medistream_program_step>