Yahoo! JAPAN Ads supports companies' marketing activities with simple settings, various marketing channels, and flexible expandability. Strategic marketing communication is possible due to the various advertising distribution aspects unique to Yahoo! JAPAN.
With this integration, Treasure Data helps you send your user segment to Yahoo! JAPAN Ads by allowing you to create advertising campaigns on Yahoo! JAPAN Ads using a customized list of first-party data from company websites and mission-critical systems related to Yahoo! Japan.
With the Treasure Data export, you can engage in the following:
- Direct Targeting: Create a user segment on TreasureData using your analysis. Then send it to Yahoo! JAPAN Ads and set up a targeted campaign as a CustomList on Yahoo! JAPAN Ads.
- Custom Segment Targeting: Send user data with its attributions to analyze and create custom segments to Yahoo! JAPAN Ads. Then set up a targeted campaign as a CustomList on Yahoo! JAPAN Ads.
In December 2022, Audience List (Custom) was migrated to new Audience Lists. To create a new one working with Treasure Data, use Audience List (Customer Data). See here for details.
The diagram describes the flow for Direct Targeting and Custom Segment Targeting.td_global_id
- Treasure Data account
- Yahoo! JAPAN Ads accounts
- The connector only supports an upload of 1 GB of compressed records.
- The integration uploads files to Yahoo! JAPAN It could fail during importing and matching in Yahoo! JAPAN Hence, customers must check the Yahoo! JAPAN Ads console to verify the valid parameters.
With Treasure Data, you have the following ways to identify a user:
| Method | Description | Notes |
|---|---|---|
| td_global_id | A third-party cookie provided by Treasure Data. It allows you to identify users without implementing CookieSync because the td_global_id is not synced on the Yahoo! Japan website from 2023/01. | No longer recommended |
| hashed_email | It allows you to identify users without cookies. Hashed emails sent to Yahoo! JAPAN Ads create a user list by matching the same hashed email on Yahoo! JAPAN Ads. | |
| IDFA/ADID | It enables you to identify users with IDFA (Identifier for Advertisers) on iOS or ADID (AdvertisingId) on Android instead of using the Cookie. | It is no longer recommended. |
Log into Yahoo! Business Center, select the Tools to the drop-down list in the Display Ads tab, and open the Target Lists page. If you have difficulty navigating the Yahoo! Ads Campaign Management Tool layout, contact the Yahoo! Japan support team.

Select the Add Target List drop-down list and choose the Create Custom List option.

Check the Custom Audience ID / Target List ID.

If the Audience List-ID column is not shown, select the Display tab and select the Target List ID checkbox.

Contact your Treasure Data Customer Success representative.
In Treasure Data, you must create and configure the data connection for export before running your query. As part of the data connection, you provide authentication to access the integration.
Open TD Console.
Navigate to Integrations Hub > Catalog.
Search for and select Yahoo! JAPAN Ads.
The following dialog opens.

Enter your Brand ID.
Enter a name for your connection.
Select Done.
Set the following parameters:
| Parameter | Description |
|---|---|
user_list_type (required) | User list type:
|
user_id_type (required) | User ID type:
|
ignore_invalid_records (optional) | Ignore the invalid records. |
custom_audience_id (optional) | A custom audience id (site retargeting id) is required when user_list_type is direct_targeting. See here to retrieve the ID. |
| account_id (optional) | Account Id is needed when user_list_type is direct_targeting |
target_list_id (optional) | An audience list id is required when user_list_type is direct_targeting. |
Here is a sample configuration:
type: yahoo_dmp
brand_id: brand_id
user_list_type: direct_targeting
user_id_type: hashed_email
custom_audience_id: custom_audience_id
account_id: account_id
target_list_id: target_list_id
ignore_invalid_records: falseSet the following parameters:
| Parameter | Description |
|---|---|
user_list_type (required) | User list type:
|
user_id_type (required) | User ID type:
|
ignore_invalid_records (optional) | Ignore the invalid records. |
client_id (optional) | The client id is required when user_list_type is custom_segment_targeting |
data_source_number (optional) | Data source number required when user_list_type is custom_segment_targeting |
Here is a sample configuration:
type: yahoo_dmp
brand_id: brand_id
user_list_type: custom_segment_targeting
user_id_type: hashed_email
client_id: client_id
data_source_number: data_source_number
ignore_invalid_records: falseExample Query for Yahoo! JAPAN Ads
For direct_targeting, Treasure Data supports one column with the format string or number. For example:
SELECT 'my@email.com' as uid;For custom_segment_targeting, the first column is the UID and has a string or number format.
SELECT 'my@email.com' as uid,
'012345' as sms,
'123' as sid,
'My Name' as name,
'Mar 11' as dob;Or, write an SQL query to extract user data with attributes to analyze and create custom segments on Yahoo! JAPAN Ads. The User ID must be the first column. For example, remove td_global_id with attributes:
SELECT
td_global_id AS td_global_id,
MAX(td_os) AS type,
COUNT(td_global_id) AS price
FROM
demo_pageviews
GROUP BY
td_global_idOr, for the raw email, you can send it as is or hash it by SQL before sending those to Yahoo! JAPAN Ads.
The data is compressed by gzip when sent to Yahoo! JAPAN Ads. If the compressed data exceeds 1GB, you must split it before sending it.
SELECT
LOWER(TO_HEX(SHA256(TO_UTF8(email))))
FROM
demo_emailYou can use Scheduled Jobs with Result Export to periodically write the output result to a target destination that you specify.
Treasure Data's scheduler feature supports periodic query execution to achieve high availability.
When two specifications provide conflicting schedule specifications, the specification requesting to execute more often is followed while the other schedule specification is ignored.
For example, if the cron schedule is '0 0 1 * 1', then the 'day of month' specification and 'day of week' are discordant because the former specification requires it to run every first day of each month at midnight (00:00), while the latter specification requires it to run every Monday at midnight (00:00). The latter specification is followed.
Navigate to Data Workbench > Queries
Create a new query or select an existing query.
Next to Schedule, select None.

In the drop-down, select one of the following schedule options:

Drop-down Value Description Custom cron... Review Custom cron... details. @daily (midnight) Run once a day at midnight (00:00 am) in the specified time zone. @hourly (:00) Run every hour at 00 minutes. None No schedule.

| Cron Value | Description |
|---|---|
0 * * * * | Run once an hour. |
0 0 * * * | Run once a day at midnight. |
0 0 1 * * | Run once a month at midnight on the morning of the first day of the month. |
| "" | Create a job that has no scheduled run time. |
* * * * *
- - - - -
| | | | |
| | | | +----- day of week (0 - 6) (Sunday=0)
| | | +---------- month (1 - 12)
| | +--------------- day of month (1 - 31)
| +-------------------- hour (0 - 23)
+------------------------- min (0 - 59)The following named entries can be used:
- Day of Week: sun, mon, tue, wed, thu, fri, sat.
- Month: jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec.
A single space is required between each field. The values for each field can be composed of:
| Field Value | Example | Example Description |
|---|---|---|
| A single value, within the limits displayed above for each field. | ||
A wildcard '*' to indicate no restriction based on the field. | '0 0 1 * *' | Configures the schedule to run at midnight (00:00) on the first day of each month. |
A range '2-5', indicating the range of accepted values for the field. | '0 0 1-10 * *' | Configures the schedule to run at midnight (00:00) on the first 10 days of each month. |
A list of comma-separated values '2,3,4,5', indicating the list of accepted values for the field. | 0 0 1,11,21 * *' | Configures the schedule to run at midnight (00:00) every 1st, 11th, and 21st day of each month. |
A periodicity indicator '*/5' to express how often based on the field's valid range of values a schedule is allowed to run. | '30 */2 1 * *' | Configures the schedule to run on the 1st of every month, every 2 hours starting at 00:30. '0 0 */5 * *' configures the schedule to run at midnight (00:00) every 5 days starting on the 5th of each month. |
A comma-separated list of any of the above except the '*' wildcard is also supported '2,*/5,8-10'. | '0 0 5,*/10,25 * *' | Configures the schedule to run at midnight (00:00) every 5th, 10th, 20th, and 25th day of each month. |
- (Optional) You can delay the start time of a query by enabling the Delay execution.
Save the query with a name and run, or just run the query. Upon successful completion of the query, the query result is automatically exported to the specified destination.
Scheduled jobs that continuously fail due to configuration errors may be disabled on the system side after several notifications.
(Optional) You can delay the start time of a query by enabling the Delay execution.
You can also send segment data to the target platform by creating an activation in the Audience Studio.
- Navigate to Audience Studio.
- Select a parent segment.
- Open the target segment, right-mouse click, and then select Create Activation.
- In the Details panel, enter an Activation name and configure the activation according to the previous section on Configuration Parameters.
- Customize the activation output in the Output Mapping panel.

- Attribute Columns
- Select Export All Columns to export all columns without making any changes.
- Select + Add Columns to add specific columns for the export. The Output Column Name pre-populates with the same Source column name. You can update the Output Column Name. Continue to select + Add Columnsto add new columns for your activation output.
- String Builder
- + Add string to create strings for export. Select from the following values:
- String: Choose any value; use text to create a custom value.
- Timestamp: The date and time of the export.
- Segment Id: The segment ID number.
- Segment Name: The segment name.
- Audience Id: The parent segment number.
- + Add string to create strings for export. Select from the following values:
- Set a Schedule.

- Select the values to define your schedule and optionally include email notifications.
- Select Create.
If you need to create an activation for a batch journey, review Creating a Batch Journey Activation.
You can specify using this data connector to export data within Treasure Workflow.
Learn more at Exporting Data with Parameters.
- Using your preferred text editor or the Treasure Data Workflow editor, open your Yahoo! JAPAN Ads workflow file.
- Write a SQL query to extract the user list you want to send to Yahoo! JAPAN Ads. See Creating and Deleting Files.
If you have just created a new custom target list for Yahoo! JAPAN Ads, wait approximately an hour to run the workflow because it can take time for the latest list to be processed.
- Open TD Console.
- Navigate to Data Workbench > Workflows.
- Highlight your Yahoo! JAPAN Ads workflow.
- Select the New Run button or define a schedule that runs the workflow repeatedly.
- Review your workflow results to make sure they were successful.
- Validate that the
Reachnumber is correct after processing the workflow (typically takes 3 - 4 hours).

If the Reach number remains at zero and is not updated after the 3-4 hour processing period, you can check the processing status in Yahoo! JAPAN Ads to validate its status.
Validate the
GUIDvalue in the Workflow log for exporting to Yahoo! JAPAN Ads API.
Use an HTTP GET inquiry for the Yahoo! JAPAN Ads API. For example:
$ curl --location \
--request GET 'https://api.tgm.yahoo-net.jp/v3/userlists/guid_value' \ --header 'x-api-key: x-api-key'{
"guid": "guid_value",
"brandGuid": "brandguid_value",
"vendorGuid": "vendorGuid_value",
"entityId": "entityId_value",
"uidKey": "uidKey_value",
"tagDefinitionGuid": "yahoo_japan_ydn_custom_audience_server",
"tagFields": {
"p": "p_value",
"lid": "lid_value"
},
"status": "CREATED"
}- Replace the empty values with the relevant information.
| Field | Description |
|---|---|
guid_value | GUID from workflow |
x-api-key | an x-API-key string that you used to set the workflow secrets. (Please get in touch with TD for the API key) |
brandguid_value | |
vendorGuid_value | |
entityId_value | |
uidKey_value | |
p_value | |
lid_value |
If you receive "status":"ACTIVATED" as an HTTP result, the process has been completed in Yahoo! JAPAN Ads successfully. If the status is "CREATED," "UPLOADED," or "PROCESSING," the process in Yahoo! JAPAN Ads is not yet complete.