查询设备
POST
/api/v2/query_devices
请求参数
Header 参数
ApiEmail
string
邮箱账号
ApiToken
string
Token令牌
Body 参数multipart/form-data
udid
string
设备码
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://api-cer.jfkjtg.com/api/v2/query_devices' \
--header 'ApiEmail;' \
--header 'ApiToken;' \
--form 'udid=""'
返回响应
🟢200成功
application/json
Body
code
integer
必需
status
boolean
必需
message
string | null
必需
error
string
必需
data
array [object {20}]
必需
id
string | null
ID
device_id
string | null
设备 ID
name
string | null
必需
device
string | null
设备码
product
string | null
必需
product_name
string | null
必需
note
string | null
必需
level
string | null
必需
is_active
boolean
是否为正常状态
is_replenish
string | null
必需
is_processing
boolean
是否为卡设备
apple_id
string | null
Apple ID
p12
string
必需
mobileprovision
string | null
必需
password
string | null
P12文件密码
create_at
string
创建日期
expire_at
string
到期日期
update_at
string
更新日期
status
enum<string> | enum<null>
设备状态
枚举值:
PROCESSINGENABLED
api_source
enum<string>
必需
枚举值:
defaultneicexiasutuoyundumpappkuaishanqian
示例
{
"code": 200,
"status": true,
"message": "查询成功",
"error": null,
"data": [
{
"id": "2B4****3J3",
"device_id": "2B4****3J3",
"name": null,
"device": "adc1**********************d7b2",
"product": null,
"product_name": null,
"note": null,
"level": null,
"is_active": true,
"is_replenish": null,
"is_processing": false,
"apple_id": null,
"p12": "MIIMYA...",
"mobileprovision": "MII3aQYJ...",
"password": "1",
"create_at": "2024-12-13 11:02:17",
"expire_at": "2025-12-13 11:02:17",
"update_at": "2024-12-13 11:02:17",
"status": "ENABLED",
"api_source": "default"
}
]
}
修改于 2025-04-27 05:46:31