POST api/History?token={token}

Metoda przesyłająca historię urządzenia: plik muzyczny lub komunikat oraz czas jego odtworzenia, od ostatniej aktualizacji.

Request information

Parameters

NameDescriptionAdditional details
token Token urządzenia odtwarzającego
history Historia urządzenia w formie listy

Define this parameter in the request body.

Request format

application/json, text/json

Example
[
  {
    "fileId": 1,
    "date": 2
  },
  {
    "fileId": 1,
    "date": 2
  },
  {
    "fileId": 1,
    "date": 2
  }
]

text/html

Example
[{"fileId":1,"date":2},{"fileId":1,"date":2},{"fileId":1,"date":2}]

application/xml, text/xml

Example
<ArrayOfHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <History>
    <date>2</date>
    <fileId>1</fileId>
  </History>
  <History>
    <date>2</date>
    <fileId>1</fileId>
  </History>
  <History>
    <date>2</date>
    <fileId>1</fileId>
  </History>
</ArrayOfHistory>

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>