Knowledge Base
API Reference Documentation for Sending a dataset using The Google DV360 Customer Match Connector
Below is the reference documentation for sending (or syncing) a dataset to Google DV360 via Narrative’s Connections endpoint. For more information on the Narrative API, visit api.narrative.io.
Endpoint
POST https://app.narrative.io/connections
Request Body
{
"dataset_id": 1234,
"profile_id": "a90feda1-dc77...",
"quick_settings": {
"type": "audience_first_party_new",
"description": "my audience description",
"historical_data_enabled": true,
"membership_duration": 10000,
"name": "my data segment name"
}
}
- dataset_id: The numeric identifier of your dataset in Narrative.
- profile_id: The Google DV360 Connector profile ID.
- quick_settings:
- type: Typically
audience_first_party_new
for a new first-party audience. - description: A short descriptor for the DV360 audience.
- historical_data_enabled: Include matching historical records if
true
. - membership_duration: How long a user remains in the audience, in days.
- name: A friendly name for your DV360 audience.
- type: Typically
Response
Status Code: 201 Created
{
"id": "1bcaddbb-f1e8...",
"dataset_id": 1234,
"quick_settings": {
"name": "my data segment name",
"type": "audience_first_party_new",
"description": "my audience description",
"membership_duration": 10000,
"historical_data_enabled": true
},
"profile_id": "a90feda1-dc77...",
"status": "active"
}