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": "14460ca1-9da8-40b5-b428-6ab3d65c95e3",
  "program_id": "ca2f72b2-ac7c-412a-b266-fd55bc9eab8e",
  "code": 3,
  "name": "sample string 4",
  "medistream_program_step_type_id": "748c795b-158a-46b2-9df3-0a91ae90eb41",
  "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>14460ca1-9da8-40b5-b428-6ab3d65c95e3</id>
  <medistream_program_step_type_id>748c795b-158a-46b2-9df3-0a91ae90eb41</medistream_program_step_type_id>
  <name>sample string 4</name>
  <program_id>ca2f72b2-ac7c-412a-b266-fd55bc9eab8e</program_id>
</medistream_program_step>