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

Authorizations

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

Path Parameters

idSite
string
required

Website ID

Body

application/json
name
string
required

Name of the pixel

Response

200

result
string
Example:

"success"

message
string
Example:

"Succesfully added pixel."

id
integer
default:0
Example:

123