POST api/SystemInfo?token={token}

Metoda umożliwiająca przesłanie informacji o systemie na którym została zainstalowana aplikacja

Request information

Parameters

NameDescriptionAdditional details
token Klucz sesji urządzenia
systemInfo Informacje o systemie urządzenia na którym zainstalowano aplikację

Define this parameter in the request body.

Request format

application/json, text/json

Example
{
  "Info": "sample string 1"
}

text/html

Example
{"Info":"sample string 1"}

application/xml, text/xml

Example
<SystemInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <Info>sample string 1</Info>
</SystemInfo>

application/x-www-form-urlencoded

Example

No exaples available

Reply information

Reply format

application/json, text/json

Example
{
  "Data": {
    "IsActive": true,
    "Message": "sample string 2"
  },
  "IsError": true,
  "Message": "sample string 2",
  "IsLastRecord": true
}

text/html

Example
{"Data":{"IsActive":true,"Message":"sample string 2"},"IsError":true,"Message":"sample string 2","IsLastRecord":true}

application/xml, text/xml

Example
<OperationResultOfDeviceResponsetEygfCMZ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Result">
  <IsError>true</IsError>
  <IsLastRecord>true</IsLastRecord>
  <Message>sample string 2</Message>
</OperationResultOfDeviceResponsetEygfCMZ>