×
Menu
Index

4.1.20. signature / read_signature

 
Manual signing in your online application is also provided with BOA. This way it is rather easy to have forms where customers can sign after a delivery and to save this in the database. With the read_signature you can recall an old signature, but it can't be changed anymore.
 
 
Customer can sign for delivery.
 
 
{
  "display": "Signature.",
  "tooltip": "",
  "fieldname": "signature",
  "length": 99,
  "inputtype": "signature",
  "block": 1,
  "newline": true,
  "labelwidth": 2,
  "fieldwidth": 8,
  "fieldheight": 15
}
 
 
  • inputtype: signature / read_signature. With the signature there is no color options and no line-widt selection.
  • labelwidth: defines the width of the label.
  • fieldwidth: defines the width of the drawing area.
  • fieldheight: defines the height of the drawing area.
 
 
 
The signature will be send as an image to the endpoint. This will be encoded with base64.
 
"data": [
{
  "id": "139401",
  "signature": "data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAABEMAAAHvCAYAAAC\/uhHQA....................jzkdZqvsDeAAAAABJRU5ErkJggg=="
}
],