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": "198edb2d-9e17-4a46-961c-f22b9e83dc78",
  "program_id": "c4f97eeb-8ba6-4535-92dd-7a351976e3b0",
  "code": 3,
  "name": "sample string 4",
  "medistream_program_step_type_id": "c7ec119d-5102-47e5-8e3d-85c3d1c397b4",
  "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>198edb2d-9e17-4a46-961c-f22b9e83dc78</id>
  <medistream_program_step_type_id>c7ec119d-5102-47e5-8e3d-85c3d1c397b4</medistream_program_step_type_id>
  <name>sample string 4</name>
  <program_id>c4f97eeb-8ba6-4535-92dd-7a351976e3b0</program_id>
</medistream_program_step>