Update a Footer
1 |
PUT https://restapi.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
1 2 3 4 5 |
{ "status": "Success", "message": "Footer 1 updated.", "id": "1" } |
Code Examples
1 |
curl -X PUT https://restapi.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' |