I Can’t find any way to set prefill tabs data
thru all posts it looked like IÂ should do it this way, but it doesn't work
Â
let results = await envelopesApi.createEnvelope(accountId, {
      envelopeDefinition: {
        templateId: 'xxxxxxxxxxxxxxxxx',
        templateRoles: Â
          {
            email: 'reciepient@gmail.com',
            name: 'john doe',
            roleName: 'client'
          },
        ],
        tabs: {
          prefillTabs: {
            textTabs: t
              {
                tabLabel: 'name',
                value: 'Jabberwocky!',
              },
              {
                tabLabel: "text",
                value: 'lorem ipsum'
              }
            ]
          }
        },
        status: 'sent'
      },
    });
Â