API Reference
Document Fields
Place and manage signature and data fields on document pages.
Document Fields
Place and manage signature and data fields on document pages.
Endpoints
GET
/api/v1/documents/{id}/fieldsList fields
Required scope:read:documents
client.documents.byId("ID").fields.get()POST
/api/v1/documents/{id}/fieldsCreate field
Required scope:write:documents
client.documents.byId("ID").fields.post(body)PUT
/api/v1/documents/{id}/fields/{fid}Update field
Required scope:write:documents
client.documents.byId("ID").fields.byFid("FID").put(body)DELETE
/api/v1/documents/{id}/fields/{fid}Delete field
Required scope:write:documents
client.documents.byId("ID").fields.byFid("FID").delete()This page is auto-generated from the OpenAPI spec. Run npm run docs:generate to update.