[Advanced] APIs - POST call - passing lists in body parameters

Hi all,

Setting up an integration with Adobe sign. I am looking to pass multiple signatories from bubble to Adobe using the API.

The API I am using is POST /Agreements (link below)

Adobe handles user with the participantSetsInfo parameter. By default this is singular (i.e. one person). I have this working and can pass one user over to adobe with my document.

What I am trying to do is pass multiple users (or multiple signatories for a document). Is there a methodology in Bubble to pass a list of participantSetsInfo?

I have included below

  • Screenshot of the working API call
  • Body Code
  • Adobe Swagger docs

Many thanks

Simon

Body
{
“fileInfos”: [
{
“transientDocumentId”: “”
}
],
“name”: “”,
“participantSetsInfo”: [
{
“order”: 1,
“role”: “”,
“memberInfos”: [
{
“email”: “”
}
]
}
],
“signatureType”: “”,
“state”: “”
}

Link to Adobe Swagger