Knowledge Base
API Reference Documentation for The Google DV360 CMU Connector Profile Creation
Create Profile
Creates a new profile to enable integration with Google DV360 Customer Match.
Endpoint
POST https://googledv360cmu.narrativeconnectors.com/profiles
Request
Field | Type | Required | Description |
---|---|---|---|
description | string | No | An optional description for the profile. |
google_dv360_customer_id | number | Yes | The primary DV360 Customer ID to be associated with this profile. |
name | string | Yes | A descriptive name for the DV360 profile. |
Example Request
POST /profiles HTTP/1.1
Host: googledv360cmu.narrativeconnectors.com
Content-Type: application/json
{
"description": "profile description",
"google_dv360_customer_id": 12345678,
"name": "profile name"
}
Response
Status Code: 201 Created
{
"id": "a90fe...",
"created_at": "2025-...",
"google_dv360_customer_id": 12345678,
"name": "profile name",
"status": "disabled",
"updated_at": "2025-..."
}
Notes
- OAuth Authorization: Ensure you have a valid OAuth token for the DV360 account.
- Status: Newly created profiles will typically start as
disabled
. - google_dv360_customer_id: This must be your valid DV360 Customer ID.
Contact / Support
For any questions or support related to these endpoints, please reach out to your Narrative representative or consult the official Narrative documentation.