查询印章图片
POST
/open/seal/images
请求参数
Header 参数
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
OpenSealInfoQuery :OpenSealInfoQuery
sealIds
array
必需
示例
{
"sealIds": [
null
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/open/seal/images' \
--header 'Content-Type: application/json' \
--data-raw '{
"sealIds": [
null
]
}'
返回响应
🟢200成功
application/json
Body
Response<List<SealVO>> :Response
code
状态码200成功
message
信息描述
body
array [object {5}]
可选
sealId
印章ID
sealData
可选
format
图片格式
height
图片高度
width
图片宽度
示例
{
"code": null,
"message": null,
"body": [
{
"sealId": null,
"sealData": null,
"format": null,
"height": null,
"width": null
}
]
}