PUT https://api.actonsoftware.com/api/1/footer/{id}
This endpoint allows you to update an existing footer in the account.
Customers wanting to access our API via our gateway in the EU can use this link:
PUT https://api-eu.actonsoftware.com/api/1/footer/{id}
Parameters
Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
---|---|---|---|---|---|
Authorization: | Header | False | Required | String | Insert your generated access token. (Bearer {access token}) |
footerid | Path | False | Required | String | Specify the ID of the footer. |
html | Form | False | Optional | String | Specify valid HTML for the footer. |
text | Form | False | Optional | String | Specify the text version of the footer. |
title | Form | False | Optional | String | Specify a title for the footer. |
Response
{ "status": "Success", "message": "Footer 1 updated.", "id": "1" }
Code Examples
cURL
curl -X PUT https://api.actonsoftware.com/api/1/footer/1 -H "Authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs" -H "Content-Type: application/x-www-form-urlencoded" -d 'html=updated html here'