Get pixel by id for a given business.
Get pixel by id for a given business.
Request
- business_idstring [uuid]Required
A unique identifier for the entity.
Example:ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a
- pixel_idstringRequired
A unique identifier for a pixel.
Example:cd2f1480ba3d4f9b9c5a39893c0def91
Response
Pixel
- idstringRead only
A unique identifier for a pixel.
Supported content-type(s):Example:
"cd2f1480ba3d4f9b9c5a39893c0def91"
- integration_idstring [uuid]Read only
A unique identifier for the integration.
Supported content-type(s):Example:
"ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a"
- domainstring [uri]
The URL you would like to track
Example:"https://www.spotify.com"
- namestring
The name of the pixel.
Example:"Spotify"
- created_atstring [date-time]Read only
Date the entity was created. Time should be in ISO 8601 format using Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ
Supported content-type(s):Example:
"2026-01-23T04:56:07Z"
- Read only
- idstringRead only
A unique identifier for an event.
Supported content-type(s):Example:
"23815327f0c64cf9811516c53c465f37"
- typestring
The type of event.
Allowed values:"PAGE_VIEW"
,"LEAD"
,"PURCHASE"
,"ADD_TO_CART"
Example:"LEAD"
- created_atstring [date-time]Read only
Date the entity was created. Time should be in ISO 8601 format using Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ
Supported content-type(s):Example:
"2026-01-23T04:56:07Z"
- last_activity_atstring [date-time]Read only
Date the event was last used. Time should be in ISO 8601 format using Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ
Example:"2021-01-23T04:56:07Z"
- Read only
- typestring
The type of event.
Allowed values:"PAGE_VIEW"
,"LEAD"
,"PURCHASE"
,"ADD_TO_CART"
Example:"LEAD"
- hour_partitionstring [date-time]Read only
The hour the event counts pertain to, in ISO 8601 format using Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ
Example:"2023-08-02T10:00:00Z"
- countintegerRead only
Count of historical events, aggregated for the hour.
Example:42
- dataset_idstring [uuid]
A unique identifier for the dataset.
Example:"0d86b9e9-70f0-4700-a725-3417ba8786f6"
Response sample
{ "id": "cd2f1480ba3d4f9b9c5a39893c0def91", "integration_id": "ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a", "domain": "https://www.spotify.com", "name": "Spotify", "created_at": "2026-01-23T04:56:07Z", "events": [ { "id": "23815327f0c64cf9811516c53c465f37", "type": "LEAD", "created_at": "2026-01-23T04:56:07Z", "last_activity_at": "2021-01-23T04:56:07Z" } ], "historical_events": [ { "type": "LEAD", "hour_partition": "2023-08-02T10:00:00Z", "count": 42 } ], "dataset_id": "0d86b9e9-70f0-4700-a725-3417ba8786f6"}