Creates fields for a particular document
Request
Body Params application/json
{
"fields": [
{
"field_id": "string",
"type": "text",
"placeholder": "string",
"assigned_to": "string",
"layout": {
"page": 0,
"position": {
"offset_x": 0,
"offset_y": 0,
"anchor_point": "topleft"
},
"style": {
"width": 0,
"height": 0
}
}
}
]
}
Request Code Samples
curl --location --request POST '/documents/BhVzRcxH9Z2LgfPPGXFUBa/fields' \
--header 'Content-Type: application/json' \
--data-raw '{
"fields": [
{
"field_id": "string",
"type": "text",
"placeholder": "string",
"assigned_to": "string",
"layout": {
"page": 0,
"position": {
"offset_x": 0,
"offset_y": 0,
"anchor_point": "topleft"
},
"style": {
"width": 0,
"height": 0
}
}
}
]
}'
Modified at 2024-09-17 17:05:10