PUT
/
admin
/
form
/
field
curl --request PUT \
  --url https://api.helpyousponsor.com/v1/admin/form/field \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": 123,
  "client_id": "<string>",
  "hysform_id": 123,
  "field_key": "<string>",
  "field_label": "<string>",
  "field_data": "<string>",
  "field_type": "<string>",
  "required": true,
  "permissions": "<string>",
  "admingroup_id": 123,
  "is_title": true,
  "sortable": 123,
  "filter": 123,
  "field_order": 123,
  "deleted_at": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "type": "<string>"
}'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Field data to be updated
id
integer
client_id
string
hysform_id
integer
field_key
string
field_label
string
field_data
string | null
field_type
string
required
boolean
permissions
string
admingroup_id
integer
is_title
boolean
sortable
integer
filter
integer
field_order
integer
deleted_at
string | null
created_at
string
updated_at
string
type
string

Response

200
application/json
Successful operation
message
string