POST api/Files/DelFileAllByImei

文件标识为已读
常用于语音聊天等

Request Information

Body Parameters

PhotoFileListModel
NameDescriptionTypeAdditional information
Imei

设备imei

string

None.

UserId

用户 id

integer

None.

Type

用户下所有设备:1 用户下单个设备:2

integer

None.

MapType

地图类型

string

None.

PageSize

一页展示多少条

integer

None.

PageNo

页码

integer

None.

DelTime

清除时间

string

None.

Token

登录后获取到的 Token

string

None.

Language

语言选项

string

None.

AppId

APP应用标识

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Imei": "sample string 1",
  "UserId": 2,
  "Type": 3,
  "MapType": "sample string 4",
  "PageSize": 5,
  "PageNo": 6,
  "DelTime": "sample string 7",
  "Token": "sample string 8",
  "Language": "sample string 9",
  "AppId": "sample string 10"
}

application/xml, text/xml

Sample:
<PhotoFileListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NewGPS2012.AppApi.Models.ParModel">
  <AppId>sample string 10</AppId>
  <Language>sample string 9</Language>
  <Token>sample string 8</Token>
  <DelTime>sample string 7</DelTime>
  <Imei>sample string 1</Imei>
  <MapType>sample string 4</MapType>
  <PageNo>6</PageNo>
  <PageSize>5</PageSize>
  <Type>3</Type>
  <UserId>2</UserId>
</PhotoFileListModel>

Response Information

Resource Description

State 说明
0. 表示成功
4000. 表示失败

NormalResult
NameDescriptionTypeAdditional information
Message

消息 [大多数情况下可通过该消息做为提示语]

string

None.

State

状态码

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "State": 2
}

application/xml, text/xml

Sample:
<NormalResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NewGPS2012.AppApi.Models.ResModel">
  <State>2</State>
  <Message>sample string 1</Message>
</NormalResult>