GET api/medistreamprogramstepapi/steps/{programId}?active={active}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
programId

globally unique identifier

Required

active

boolean

None.

Body Parameters

None.

Response Information

Resource Description

Collection of 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": "4d3cae4a-19db-4d8e-89b1-f09be6910037",
    "program_id": "9cfce5c4-0bba-49ee-a7e7-9738ee41976b",
    "code": 3,
    "name": "sample string 4",
    "medistream_program_step_type_id": "37ef97bc-1f75-4bee-b4d5-f19c5eca5d8d",
    "active": true
  },
  {
    "id": "4d3cae4a-19db-4d8e-89b1-f09be6910037",
    "program_id": "9cfce5c4-0bba-49ee-a7e7-9738ee41976b",
    "code": 3,
    "name": "sample string 4",
    "medistream_program_step_type_id": "37ef97bc-1f75-4bee-b4d5-f19c5eca5d8d",
    "active": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfmedistream_program_step xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <medistream_program_step>
    <active>true</active>
    <code>3</code>
    <id>4d3cae4a-19db-4d8e-89b1-f09be6910037</id>
    <medistream_program_step_type_id>37ef97bc-1f75-4bee-b4d5-f19c5eca5d8d</medistream_program_step_type_id>
    <name>sample string 4</name>
    <program_id>9cfce5c4-0bba-49ee-a7e7-9738ee41976b</program_id>
  </medistream_program_step>
  <medistream_program_step>
    <active>true</active>
    <code>3</code>
    <id>4d3cae4a-19db-4d8e-89b1-f09be6910037</id>
    <medistream_program_step_type_id>37ef97bc-1f75-4bee-b4d5-f19c5eca5d8d</medistream_program_step_type_id>
    <name>sample string 4</name>
    <program_id>9cfce5c4-0bba-49ee-a7e7-9738ee41976b</program_id>
  </medistream_program_step>
</ArrayOfmedistream_program_step>