GET api/EMS/Get_Connections?PROP_CODE={PROP_CODE}&Group={Group}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PROP_CODE

string

Required

Group

string

Default value is

Body Parameters

None.

Response Information

Resource Description

Collection of MASTER_CONNECTION
NameDescriptionTypeAdditional information
ROWID

integer

None.

CONNECTION_ID

integer

None.

COM_STATUS

string

None.

IP_PORT

string

None.

SETTING

string

None.

STATUS

string

None.

REMARKS

string

None.

IMEI_NO

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ROWID": 1,
    "CONNECTION_ID": 2,
    "COM_STATUS": "sample string 3",
    "IP_PORT": "sample string 4",
    "SETTING": "sample string 5",
    "STATUS": "sample string 6",
    "REMARKS": "sample string 7",
    "IMEI_NO": "sample string 8"
  },
  {
    "ROWID": 1,
    "CONNECTION_ID": 2,
    "COM_STATUS": "sample string 3",
    "IP_PORT": "sample string 4",
    "SETTING": "sample string 5",
    "STATUS": "sample string 6",
    "REMARKS": "sample string 7",
    "IMEI_NO": "sample string 8"
  }
]

text/xml

Sample:
<ArrayOfMASTER_CONNECTION xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EMS_API.Models">
  <MASTER_CONNECTION>
    <COM_STATUS>sample string 3</COM_STATUS>
    <CONNECTION_ID>2</CONNECTION_ID>
    <IMEI_NO>sample string 8</IMEI_NO>
    <IP_PORT>sample string 4</IP_PORT>
    <REMARKS>sample string 7</REMARKS>
    <ROWID>1</ROWID>
    <SETTING>sample string 5</SETTING>
    <STATUS>sample string 6</STATUS>
  </MASTER_CONNECTION>
  <MASTER_CONNECTION>
    <COM_STATUS>sample string 3</COM_STATUS>
    <CONNECTION_ID>2</CONNECTION_ID>
    <IMEI_NO>sample string 8</IMEI_NO>
    <IP_PORT>sample string 4</IP_PORT>
    <REMARKS>sample string 7</REMARKS>
    <ROWID>1</ROWID>
    <SETTING>sample string 5</SETTING>
    <STATUS>sample string 6</STATUS>
  </MASTER_CONNECTION>
</ArrayOfMASTER_CONNECTION>