Formfield
Last updated
Last updated
GET /api/v2/formfield HTTP/1.1
apiKey: YOUR_API_KEY
Accept: */*
POST /api/v2/formfield HTTP/1.1
apiKey: YOUR_API_KEY
Content-Type: multipart/form-data
Accept: */*
Content-Length: 93
{
"form_id": 1,
"title": "text",
"input_type": "text",
"field_order": 1,
"required_statuses": [
"open"
]
}GET /api/v2/formfield/{id} HTTP/1.1
apiKey: YOUR_API_KEY
Accept: */*
PUT /api/v2/formfield/{id} HTTP/1.1
apiKey: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 116
"form_id=1&title='text'&input_type='text'&field_order=1&external_code='text'&required_statuses=['open']"DELETE /api/v2/formfield/{id} HTTP/1.1
apiKey: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 22
"description='text'"