GET api/ticket/getotherids

Gets id's of the reports that are linked to any other entity than account with customerid

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

list with id's and entityname

Collection of OtherId
NameDescriptionTypeAdditional information
IncidentId

string

None.

IncidentCustomerId

string

None.

Entity

string

None.

ContactName

string

None.

ContactParentCustomerName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "IncidentId": "sample string 1",
    "IncidentCustomerId": "sample string 2",
    "Entity": "sample string 3",
    "ContactName": "sample string 4",
    "ContactParentCustomerName": "sample string 5"
  },
  {
    "IncidentId": "sample string 1",
    "IncidentCustomerId": "sample string 2",
    "Entity": "sample string 3",
    "ContactName": "sample string 4",
    "ContactParentCustomerName": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfOtherId xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Ticketing.DTO">
  <OtherId>
    <ContactName>sample string 4</ContactName>
    <ContactParentCustomerName>sample string 5</ContactParentCustomerName>
    <Entity>sample string 3</Entity>
    <IncidentCustomerId>sample string 2</IncidentCustomerId>
    <IncidentId>sample string 1</IncidentId>
  </OtherId>
  <OtherId>
    <ContactName>sample string 4</ContactName>
    <ContactParentCustomerName>sample string 5</ContactParentCustomerName>
    <Entity>sample string 3</Entity>
    <IncidentCustomerId>sample string 2</IncidentCustomerId>
    <IncidentId>sample string 1</IncidentId>
  </OtherId>
</ArrayOfOtherId>