Skip to main content
PUT
/
admin
/
form
/
field
Edit a form field
curl --request PUT \
  --url https://api.helpyousponsor.com/v1/admin/form/field \
  --header 'Content-Type: application/json' \
  --header 'X-HYS-API-Key: <api-key>' \
  --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>"
}

Documentation Index

Fetch the complete documentation index at: https://api-docs.helpyousponsor.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-HYS-API-Key
string
header
required

API key generated from Developer Settings. Format: hys_...

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

Successful operation

message
string