curl --request POST \
--url https://api.helpyousponsor.com/v1/integrations/{name} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"api": "<string>",
"client_id": "<string>",
"email": "<string>",
"from_address": "<string>",
"from_name": "<string>",
"host": "<string>",
"id": 123,
"mailchimp_api": "<string>",
"name": "<string>",
"organization": "<string>",
"password": "<string>",
"privateKey": "<string>",
"publicKey": "<string>",
"username": "<string>",
"website": "<string>"
}'
{
"message": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The name of the integration to edit
Integration details
The body is of type object
.
Successful operation
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/integrations/{name} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"api": "<string>",
"client_id": "<string>",
"email": "<string>",
"from_address": "<string>",
"from_name": "<string>",
"host": "<string>",
"id": 123,
"mailchimp_api": "<string>",
"name": "<string>",
"organization": "<string>",
"password": "<string>",
"privateKey": "<string>",
"publicKey": "<string>",
"username": "<string>",
"website": "<string>"
}'
{
"message": "<string>"
}