GET v1/EventWorkForm/GuidName?eventId={eventId}&visible={visible}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
eventId

globally unique identifier

Required

visible

boolean

None.

Body Parameters

None.

Response Information

Resource Description

Collection of GuidName
NameDescriptionTypeAdditional information
Guid

globally unique identifier

None.

Name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Guid": "85107b54-34ed-458f-b104-b5cfcfe1088d",
    "Name": "sample string 2"
  },
  {
    "Guid": "85107b54-34ed-458f-b104-b5cfcfe1088d",
    "Name": "sample string 2"
  }
]

application/octet-stream

Sample:
[{"Guid":"85107b54-34ed-458f-b104-b5cfcfe1088d","Name":"sample string 2"},{"Guid":"85107b54-34ed-458f-b104-b5cfcfe1088d","Name":"sample string 2"}]

application/xml, text/xml

Sample:
<ArrayOfGuidName xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.Common">
  <GuidName>
    <Guid>85107b54-34ed-458f-b104-b5cfcfe1088d</Guid>
    <Name>sample string 2</Name>
  </GuidName>
  <GuidName>
    <Guid>85107b54-34ed-458f-b104-b5cfcfe1088d</Guid>
    <Name>sample string 2</Name>
  </GuidName>
</ArrayOfGuidName>