GET api/medistreamprogramsteptypeapi/type/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

MediStreamProgramStepTypeViewModel
NameDescriptionTypeAdditional information
id

globally unique identifier

None.

code

integer

Required

name

string

Required

active

boolean

Required

Response Formats

application/json, text/json

Sample:
{
  "id": "3efcc271-4d6e-4e08-8d9b-36501446608c",
  "code": 2,
  "name": "sample string 3",
  "active": true
}

application/xml, text/xml

Sample:
<medistream_program_step_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <active>true</active>
  <code>2</code>
  <id>3efcc271-4d6e-4e08-8d9b-36501446608c</id>
  <name>sample string 3</name>
</medistream_program_step_type>