GET api/Emotions/GetPressure

Request Information

URI Parameters

NameDescriptionTypeAdditional information
AccessToken

string

Required

Imei

string

Required

BeginTime

date

None.

EndTime

date

None.

Response Information

Resource Description

EmotionsOutputOfInt32
NameDescriptionTypeAdditional information
Result

Collection of EmotionsOfInt32

None.

Code

状态码

integer

None.

Message

错误信息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": [
    {
      "Val": 1,
      "UtcTime": "2024-09-19 11:58:41"
    },
    {
      "Val": 1,
      "UtcTime": "2024-09-19 11:58:41"
    }
  ],
  "Code": 1,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<EmotionsOutputOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Gps.OpenApi.Models.ResponseModels">
  <Code>1</Code>
  <Message>sample string 2</Message>
  <Result>
    <EmotionsOfint>
      <UtcTime>2024-09-19T11:58:41.5694566+08:00</UtcTime>
      <Val>1</Val>
    </EmotionsOfint>
    <EmotionsOfint>
      <UtcTime>2024-09-19T11:58:41.5694566+08:00</UtcTime>
      <Val>1</Val>
    </EmotionsOfint>
  </Result>
</EmotionsOutputOfint>