GET api/mediwaveprogramstepapi/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 MediWaveProgramStepViewModel
NameDescriptionTypeAdditional information
active

boolean

Required

code

integer

Required

Range: inclusive between 0 and ∞

id

globally unique identifier

None.

program_id

globally unique identifier

Required

mediwave_program_step_type_id

globally unique identifier

Required

name

string

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "active": true,
    "code": 2,
    "id": "3839bc95-7623-4021-8cb6-253367e932c2",
    "program_id": "dbb3c451-353a-4dd5-9bbe-75e890894535",
    "mediwave_program_step_type_id": "388c1721-7f4a-41bb-8960-2033a9ab359a",
    "name": "sample string 6"
  },
  {
    "active": true,
    "code": 2,
    "id": "3839bc95-7623-4021-8cb6-253367e932c2",
    "program_id": "dbb3c451-353a-4dd5-9bbe-75e890894535",
    "mediwave_program_step_type_id": "388c1721-7f4a-41bb-8960-2033a9ab359a",
    "name": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfmediwave_program_step xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <mediwave_program_step>
    <active>true</active>
    <code>2</code>
    <id>3839bc95-7623-4021-8cb6-253367e932c2</id>
    <mediwave_program_step_type_id>388c1721-7f4a-41bb-8960-2033a9ab359a</mediwave_program_step_type_id>
    <name>sample string 6</name>
    <program_id>dbb3c451-353a-4dd5-9bbe-75e890894535</program_id>
  </mediwave_program_step>
  <mediwave_program_step>
    <active>true</active>
    <code>2</code>
    <id>3839bc95-7623-4021-8cb6-253367e932c2</id>
    <mediwave_program_step_type_id>388c1721-7f4a-41bb-8960-2033a9ab359a</mediwave_program_step_type_id>
    <name>sample string 6</name>
    <program_id>dbb3c451-353a-4dd5-9bbe-75e890894535</program_id>
  </mediwave_program_step>
</ArrayOfmediwave_program_step>