POST api/PostUpdateLogoutDevice

Request Information

URI Parameters

None.

Body Parameters

LogoutDeviceLog
NameDescriptionTypeAdditional information
user_id

string

None.

device_name

string

None.

device_ip

string

None.

device_id

string

None.

Message

string

None.

Request Formats

application/json, text/json

Sample:
{
  "user_id": "sample string 1",
  "device_name": "sample string 2",
  "device_ip": "sample string 3",
  "device_id": "sample string 4",
  "Message": "sample string 5"
}

application/xml, text/xml

Sample:
<LogoutDeviceLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GasPaymentAPI.Models">
  <Message>sample string 5</Message>
  <device_id>sample string 4</device_id>
  <device_ip>sample string 3</device_ip>
  <device_name>sample string 2</device_name>
  <user_id>sample string 1</user_id>
</LogoutDeviceLog>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

OutputMessage
NameDescriptionTypeAdditional information
STATUS

string

None.

MSG

string

None.

ERRORCODE

string

None.

Response Formats

application/json, text/json

Sample:
{
  "STATUS": "sample string 1",
  "MSG": "sample string 2",
  "ERRORCODE": "sample string 3"
}

application/xml, text/xml

Sample:
<OutputMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GasPaymentAPI.Models">
  <ERRORCODE>sample string 3</ERRORCODE>
  <MSG>sample string 2</MSG>
  <STATUS>sample string 1</STATUS>
</OutputMessage>