Skip to main content
POST
/
prod
/
pixel
/
{id}
Update Pixel
curl --request POST \
  --url https://api.aimtell.com/prod/pixel/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-Authorization-Api-Key: <api-key>' \
  --data '
{
  "name": "<string>",
  "value": {
    "event_category": "<string>",
    "event_action": "<string>",
    "event_label": "<string>",
    "event_value": 123
  }
}
'
{
  "result": "success",
  "message": "Succesfully updated pixel."
}

Authorizations

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

Path Parameters

id
string
required

Pixel ID

Body

application/json
name
string
required

Name of the pixel

value
object
required

Response

200

result
string
Example:

"success"

message
string
Example:

"Succesfully updated pixel."