Considering the webportal Send page use the same API call, it's yes you can use the API to achieve the same result. 🙂
Here's the json covering the participantsetinfo:
"participantSetsInfo": [
{
"memberInfos": [
{
"email": "",
"id": "",
"securityOption": {
"authenticationMethod": "",
"nameInfo": {
"firstName": "",
"lastName": ""
},
"notaryAuthentication": "",
"password": "",
"phoneInfo": {
"countryCode": "",
"countryIsoCode": "",
"phone": ""
}
}
}
],
"order": 1,
"role": "",
"id": "",
"label": "",
"name": "",
"privateMessage": "",
"visiblePages": [
""
]
}
]
The participantSetsInfo is an array in which you can have multiple sets.
Within each set you have a memberinfos array, where in most case you have a single member, but if using recipient groups this can have multiple members.
... View more