GET api/Source
Retrieves all of the sources in the system.
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"name": "sample string 1",
"system_type": 2,
"id": 1
},
{
"name": "sample string 1",
"system_type": 2,
"id": 1
},
{
"name": "sample string 1",
"system_type": 2,
"id": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfsource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api.Ticketing">
<source>
<id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
<name>sample string 1</name>
<system_type>2</system_type>
</source>
<source>
<id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
<name>sample string 1</name>
<system_type>2</system_type>
</source>
<source>
<id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
<name>sample string 1</name>
<system_type>2</system_type>
</source>
</ArrayOfsource>
