Recipients
Create and manage form recipients with optional pre-filled answers.
Recipients
Create and manage form recipients with optional pre-filled answers.
Endpoints
/api/v1/forms/{id}/recipientsList recipients
client.forms.byId("ID").recipients.get()/api/v1/forms/{id}/recipientsCreate recipient — Creates a recipient with an optional prefill map.
client.forms.byId("ID").recipients.post(body)/api/v1/forms/{id}/recipients/bulkBulk create recipients — Creates up to 100 recipients in one request. Set sendNotifications=true to also require recipients:send_notifications. Conditional: recipients:send_notifications.
client.forms.byId("ID").recipients.bulk.post(body)/api/v1/forms/{id}/recipients/{rid}Update recipient
client.forms.byId("ID").recipients.byRid("RID").put(body)/api/v1/forms/{id}/recipients/{rid}Delete recipient
client.forms.byId("ID").recipients.byRid("RID").delete()/api/v1/forms/{id}/recipients/{rid}/responsesList recipient responses — Returns all saved responses for a recipient.
client.forms.byId("ID").recipients.byRid("RID").responses.get()/api/v1/forms/{id}/recipients/{rid}/responsesUpdate recipient responses — Update question values for a recipient. Rejected if recipient has completed the form.
client.forms.byId("ID").recipients.byRid("RID").responses.get()This page is auto-generated from the OpenAPI spec. Run npm run docs:generate to update.