PUT https://api.actonsoftware.com/api/1/logo/{id}
This endpoint allows you to update an existing logo 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/logo/{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}) |
| logoid | Path | False | Required | String | Specify the ID of the logo. |
| name | Form | False | Required | String | Specify a name for the image. |
| alttext | Form | False | Optional | String | Specify the alternative text for the image. |
| tooltip | Form | False | Optional | String | Specify the text to display when hovering over the image. |
| targeturl | Form | False | Optional | String | Specify the target URL for the image. |
Response
{
"status": "success",
"message": "The logo has been updated",
"id": "i-5"
}
Code Examples
cURL
curl -X PUT https://api.actonsoftware.com/api/1/logo/i-5 -H "authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs" -H "content-type: multipart/form-data" -F "name=new-name"