curl --request PUT \
--url https://api.helpyousponsor.com/v1/admin/settings/{settings_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"id": 123,
"client_id": "<string>",
"name": "<string>",
"text_front": "<string>",
"text_profile": "<string>",
"text_checkout": "<string>",
"text_account": "<string>",
"info": "<string>",
"allow_email": "<string>",
"show_payment": "<string>",
"deleted_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"__hevo__ingested_at": "<string>",
"__hevo__marked_deleted": "<string>",
"__hevo__source_modified_at": "<string>",
"__hevo__database_name": "<string>",
"program_type": "<string>",
"sp_num": "<string>",
"labels": "<string>",
"number_spon": "<string>",
"donation_target": "<string>",
"sponsorship_amount": "<string>",
"transaction_amount": "<string>",
"currency_symbol": "<string>",
"duration": "<string>",
"stripe": "<string>",
"login_box": "<string>",
"checks": "<string>",
"designations": "<string>",
"sorting": "<string>",
"display_all": "<string>",
"wire_transfer": "<string>",
"cash": "<string>",
"hide_payment_method": "<string>",
"hide_frequency": "<string>",
"disable_program_link": "<string>",
"display_info": "<string>",
"display_percent": "<string>",
"processing_fee": "<string>",
"processing_percentage": "<string>"
}'
{
"message": "Settings Saved."
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful operation
The response is of type object
.
curl --request PUT \
--url https://api.helpyousponsor.com/v1/admin/settings/{settings_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"id": 123,
"client_id": "<string>",
"name": "<string>",
"text_front": "<string>",
"text_profile": "<string>",
"text_checkout": "<string>",
"text_account": "<string>",
"info": "<string>",
"allow_email": "<string>",
"show_payment": "<string>",
"deleted_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"__hevo__ingested_at": "<string>",
"__hevo__marked_deleted": "<string>",
"__hevo__source_modified_at": "<string>",
"__hevo__database_name": "<string>",
"program_type": "<string>",
"sp_num": "<string>",
"labels": "<string>",
"number_spon": "<string>",
"donation_target": "<string>",
"sponsorship_amount": "<string>",
"transaction_amount": "<string>",
"currency_symbol": "<string>",
"duration": "<string>",
"stripe": "<string>",
"login_box": "<string>",
"checks": "<string>",
"designations": "<string>",
"sorting": "<string>",
"display_all": "<string>",
"wire_transfer": "<string>",
"cash": "<string>",
"hide_payment_method": "<string>",
"hide_frequency": "<string>",
"disable_program_link": "<string>",
"display_info": "<string>",
"display_percent": "<string>",
"processing_fee": "<string>",
"processing_percentage": "<string>"
}'
{
"message": "Settings Saved."
}