PUT
/
admin
/
forms
/
{hysform_id}
curl --request PUT \
  --url https://api.helpyousponsor.com/v1/admin/forms/{hysform_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": 123,
  "client_id": "<string>",
  "default_emailset_id": 123,
  "type": "<string>",
  "name": "<string>",
  "prefix": "<string>",
  "counter": 123,
  "box_folder_id": "<string>",
  "can_donor_modify_amount": "<string>",
  "mailchimp_list_id": "<string>",
  "forgive_missed_payments": 123,
  "notify": "<string>",
  "deleted_at": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "hide_payment": "<string>",
  "hysform_id": 123
}'
{
  "message": "Successfully Updated Form"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

hysform_id
integer
required

ID of Hysform to update

Body

application/json
Hysform object that needs to be updated
id
integer
client_id
string
default_emailset_id
integer
type
string
name
string
prefix
string
counter
integer
box_folder_id
string
can_donor_modify_amount
string
mailchimp_list_id
string
forgive_missed_payments
integer
notify
string
deleted_at
string
created_at
string
updated_at
string
hide_payment
string
hysform_id
integer

Response

200
application/json
Successful operation
message
string