Fx.sign: API for electronic signature
1. Reminder
Fx.sign.urgeSign(<Integer employeeId>, <String signAppType>, <String objectId>)
Parameter Description
| parameter | type | description |
| ------------ | ------------ | ----------------------- ----------------------------------------- |
| employeeId | Integer | employee id |
| signAppType | String | Vendor type |
| objectId | String | Electronic signature data id |
return type
APIResult
Return value description
Map, whether the reminder is successful
Java example
APIResult ret = Fx.sign.urgeSign(1000, "custom_provider", "6246a1d8ada961000137ed26")
if (ret. isError()) {
log.info(ret.message());
} else {
log.info(ret.getData());
}
2. Revocation of electronic signature
Fx.sign.cancelSignTask(<Integer employeeId>, <String signAppType>, <String objectId>, <String remark>)
Parameter Description
| parameter | type | description |
| ------------ | ------------ | ----------------------- ----------------------------------------- |
| employeeId | Integer | employee id |
| signAppType | String | Vendor type |
| objectId | String | Electronic signature data id |
| remark | String | Remark reason |
return type
APIResult
Return value description
Map, whether the undo was successful
Java example
APIResult ret = Fx.sign.cancelSignTask(1000, "custom_provider", "62442707ada9610001375eed", "test")
if (ret. isError()) {
log.info(ret.message());
} else {
log.info(ret.getData());
}