Campaign Entity Types
The campaign_entity_types table contains data about which campaigns have access to which entity types.
This table can be used to determine which campaigns have which entity types active, as well as metadata about the configuration such as when it was created.
Columns
| Column Name | Description | Type | Nullable |
|---|---|---|---|
| id | The numerical identifier of the object. | INT8 | No |
| campaign_id | The numerical identifier of the campaign this configuration is in. Relates to the id column in the campaigns table. |
INT8 | Yes |
| entity_type_id | The numerical identifier of the entity this configuration applies to. Relates to the id column in the entities table. |
INT8 | Yes |
| created_at | The UTC timestamp when this object was created. | TIMESTAMP | No |
| updated_at | The UTC timestamp when this object was updated. | TIMESTAMP | No |