Vicky | Posts: 1 OneSpan Api Sunday, April 2, 2023 at 07:59am 0 votes Hello everybody. Is there a way I could have intregrations Api code? I need to check code about checkboxes. Thank you! April 2 Created April 2 Last Updated a year ago Last Reply 1 Replies 65 Views 2 Users 0 Likes 0 Links Duo_Liang | Posts: 3776 Reply to: OneSpan Api Monday, April 3, 2023 at 01:34pm 0 votes Hi Vicky, Thanks for your post! If you are looking for an example package JSON with checkbox fields, refer to below: { "roles": [ { "id": "Signer1", "signers": [ { "email": "[email protected]", "firstName": "John", "lastName": "Smith" } ] } ], "documents": [ { "approvals": [ { "role": "Signer1", "fields": [ { "page": 0, "top": 100, "subtype": "FULLNAME", "height": 50, "left": 100, "width": 200, "type": "SIGNATURE" }, { "height": 20, "left": 100, "name": "", "page": 0, "subtype": "CHECKBOX", "top": 150, "type": "INPUT", "value": null, "width": 20, "validation": { "group": "group1", "required": false } } ] } ], "name": "Document1" } ], "name": "Example Transaction", "language": "en", "description": "Some description.", "status": "SENT" } Duo Log in or register to post comments
Duo_Liang | Posts: 3776 Reply to: OneSpan Api Monday, April 3, 2023 at 01:34pm 0 votes Hi Vicky, Thanks for your post! If you are looking for an example package JSON with checkbox fields, refer to below: { "roles": [ { "id": "Signer1", "signers": [ { "email": "[email protected]", "firstName": "John", "lastName": "Smith" } ] } ], "documents": [ { "approvals": [ { "role": "Signer1", "fields": [ { "page": 0, "top": 100, "subtype": "FULLNAME", "height": 50, "left": 100, "width": 200, "type": "SIGNATURE" }, { "height": 20, "left": 100, "name": "", "page": 0, "subtype": "CHECKBOX", "top": 150, "type": "INPUT", "value": null, "width": 20, "validation": { "group": "group1", "required": false } } ] } ], "name": "Document1" } ], "name": "Example Transaction", "language": "en", "description": "Some description.", "status": "SENT" } Duo Log in or register to post comments
Reply to: OneSpan Api
Monday, April 3, 2023 at 01:34pmHi Vicky,
Thanks for your post!
If you are looking for an example package JSON with checkbox fields, refer to below:
{
"roles": [
{
"id": "Signer1",
"signers": [
{
"email": "[email protected]",
"firstName": "John",
"lastName": "Smith"
}
]
}
],
"documents": [
{
"approvals": [
{
"role": "Signer1",
"fields": [
{
"page": 0,
"top": 100,
"subtype": "FULLNAME",
"height": 50,
"left": 100,
"width": 200,
"type": "SIGNATURE"
},
{
"height": 20,
"left": 100,
"name": "",
"page": 0,
"subtype": "CHECKBOX",
"top": 150,
"type": "INPUT",
"value": null,
"width": 20,
"validation": {
"group": "group1",
"required": false
}
}
]
}
],
"name": "Document1"
}
],
"name": "Example Transaction",
"language": "en",
"description": "Some description.",
"status": "SENT"
}
Duo