心动苹果开发者证书管理
  1. 官方接口V2【同步】
心动苹果开发者证书管理
  • 简介
  • 基础接口
    • 获取价格
      POST
    • 卡密充值
      POST
    • 重置令牌
      POST
    • 添加证书
      POST
    • 查询证书
      POST
    • 删除证书
      POST
    • 重构证书
      POST
    • 证书开关
      POST
    • 修改证书备注
      POST
    • 拉取设备
      POST
    • 添加设备
      POST
    • 查询设备
      POST
    • 禁用设备
      POST
    • 启用设备
      POST
    • 修改设备备注
      POST
    • 创建描述文件
      POST
    • 删除描述文件
      POST
    • 添加公池设备
      POST
    • 查询公池设备
      POST
    • 禁用公池设备
      POST
    • 启用公池设备
      POST
    • 修改公池设备备注
      POST
    • 证书有效性检测
      POST
    • 证书&描述文件检测
      POST
  • 官方接口V1【同步】
    • 验证UDID
      POST
    • 统计数据
      POST
    • 新闻列表
      POST
    • 免费证书
      POST
    • 添加设备
      POST
    • 查询设备
      POST
    • 证书列表
      POST
    • 设备列表
      POST
    • 公池设备列表
      POST
  • 内测侠无感迁移接口
  • 速托云无感迁移接口
  • DumpApp无感迁移接口
  • 快闪签&喵喵签无感迁移接口
  • 本平台上的常见问题与更多帮助
    • 添加证书 - 新接口模式「P8模式」
    • 安装&使用同款源码过程出现错误
  • 官方接口V2【同步】
    • 创建设备
      POST
    • 查询设备
      POST
  • 官方接口V3【异步】
    • 创建异步任务
  1. 官方接口V2【同步】

查询设备

POST
/api/v2/query_devices
最后修改时间:2025-04-08 18:45:10

请求参数

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 'https://cert.iosyuan.cn/api/v2/query_devices' \
--header 'ApiEmail;' \
--header 'ApiToken;' \
--form 'udid=""'

返回响应

🟢200成功
application/json
Body
code
integer 
必需
HTTP状态码丨类型:integer
status
boolean 
必需
响应状态丨类型:boolean
message
string  | null 
必需
提示文本|类型:string
error
string 
必需
错误提示文本|类型: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 
必需
P12文件base64数据
mobileprovision
string  | null 
必需
描述文件base64数据
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-08 18:45:10
上一页
创建设备
下一页
官方接口V3【异步】
Built with