Get Stamps List

GET/esignglobal/v1/stamps

Interface Description

Supports querying the list of stamps.

  • Using an APPID that has the corresponding stamp query permission, you can obtain a list of stamp resources.

 

Request Parameters

Parameter Name

Type

Required

Description

pageNum

int

false

Query page number (default value 1)

pageSize

int

false

Number of items per page, maximum value: 20 (default value 20)

Request Example

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

 

Response Parameters

Parameter Name

Type

Description

total

int

Total number of stamps in the query result

stampList

array

List of stamps

 

stampId

string

Stamp ID

 

stampName

string

Stamp name

 

stampUrl

string

Stamp image download URL

 

stampWidth

int

Stamp width (unit: mm)

 

stampHeight

int

Stamp height (unit: mm)

Response Example

{
    "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"
}

 

Interface Description
Request Parameters
Request Example
Response Parameters
Response Example