Skip to main content
PUT
/
prod
/
site
/
{id}
Update Website Details
curl --request PUT \
  --url https://api.aimtell.com/prod/site/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-Authorization-Api-Key: <api-key>' \
  --data '
{
  "name": "<string>",
  "icon": ""
}
'
{
  "result": "success",
  "message": "Updated website succesfully.",
  "id": "1"
}

Authorizations

X-Authorization-Api-Key
string
header
default:""
required

Path Parameters

id
string
required

Site ID

Body

application/json
name
string
required

Website Name

icon
string
default:""

URL of Website Icon

Response

200