OSSupportQuestions | Posts: 21

Rest Example for List Field

0 votes
Hi team, There's no working example for list field in this guide: https://developer.esignlive.com/guides/feature-guides/fields/ Can we add some supplementary information regarding this to this guide? Thanks!

Duo_Liang | Posts: 3776

Reply to: Rest Example for List Field

0 votes
Hi there, To add a OneSpan Sign list field, you’d include below field node to your payload under documents – approvals – fields
{
  "id": "fieldId",
  "name": "fieldName",
  "type": "INPUT",
  "subtype": "LIST",
  "validation": {
    "required": false,
    "enum": [
      "item1",
      "item2",
      "item3"
    ]
  },
  "value":"item1",
  "page": 0,
  "left": 472,
  "width": 165,
  "height": 37,
  "top": 529,
  "extract": false
}
You can either use X/Y coordinates (page,top,left,width,height and extract false) or extraction methods (remove page,top,left,width,height and extract true) to locate the field. Example above using the former. Optionally, set a value for default chosen item Hope this could help! Duo

Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off