查詢圖章列表

GET/esignglobal/v1/stamps

接口描述

支援查詢圖章列表。

  • 使用擁有對應圖章查詢權限的APPID,可以獲取圖章資源列表。

 

請求參數

參數名稱

類型

是否必填

說明

pageNum

int

false

查詢頁碼(預設值1)

pageSize

int

false

每頁顯示的梳理,最大值:20(預設值20)

請求範例

{
    "pageNum": 1,
    "pageSize": 20
}

 

響應參數

參數名稱

類型

說明

total

int

查詢結果中圖章的總數量

stampList

array

圖章列表

 

stampId

string

圖章Id

 

stampName

string

圖章名稱

 

stampUrl

string

圖章圖片下載地址

 

stampWidth

int

圖章寬度(單位:mm)

 

stampHeight

int

圖章高度(單位:mm)

響應範例

{
    "code": 0,
    "data": {
        "total": 2,
        "stampList": [
            {
                "stampId": "501d7b6a95a74a478757ec49c89dcaba",
                "stampName": "demoStamp",
                "stampUrl": "urlDemo1",
                "stampWidth": 36,
                "stampHeight": 29
            },
            {
                "stampId": "4019ecfe08014cdda02959732b2da5f9",
                "stampName": "jack.demo",
                "stampUrl": "urlDemo2",
                "stampWidth": 100,
                "stampHeight": 78
            }
        ]
    },
    "message": "success"
}

 

 

 

接口描述
請求參數
請求範例
響應參數
響應範例