Edit Stamps

PUT/esignglobal/v1/stamps

Interface Description

Using This interface allows for the modification of stamp names and images. After editing, the changes can be viewd and modified again on the page.

  • Using an APPID with the corresponding stamp modification permissions, you can edit the name and image of a previously created stamp.

 

Request Parameters

Parameter Name

Type

Required

Description

stampId

string

true

stamp ID

stampName

string

true

Stamp Name

  • The stamp name must not exceed 200 characters.

imageBase64

string

true

Base64 encoded string of the stamp image. Note:

  • Supported image format: PNG
  • Image size: Decoded image ≤ 2MB
  • Dimension restrictions: Width and height should not exceed 100mm and should be at least 18mm.

Request Example

{
  "stampId": "37e4abd1c9cc4232a29fa095b242d219",  
  "stampName": "demoStamp",
  "imageBase64": "demoImageBase64"
}

 

Response Parameters

Parameter Name

Type

Description

stampId

string

Stamp ID

stampWidth

int

Stamp width (unit: mm)

stampHeight

int

Stamp height (unit: mm)

Response Example

{
    "code": 0,
    "data": {
        "stampId": "37e4abd1c9cc4232a29fa095b242d219",
        "stampWidth": 36,
        "stampHeight": 29
    },
    "message": "success"
}

 

Interface Description
Request Parameters
Request Example
Response Parameters
Response Example