AbTest
Create, Read, Update and Remove A/B test information.
Table Specific Information
Select
The 本製品 will use the Yahoo! Ads API to process WHERE clause conditions built with the following column and operator. The AccountId is required to make a request and the rest of the filter is executed client-side within the 本製品.
- AccountId supports the '='.
- AbTestId supports the '=,IN'.
SELECT * FROM AbTest WHERE AccountId = '1002504155' SELECT * FROM AbTest WHERE AccountId = '1002504155' AND AbTestId = '1000000651'
INSERT
Insert can be executed by specifying the AccountId, AbTestName, ACampaignId, BCampaignId, StartDate and EndDate columns. The columns that are not read-only can be inserted optionally. Following is an example of how to insert into this table
INSERT INTO AbTest(AbTestName, ACampaignId, AccountId, BCampaignId, StartDate, EndDate) VALUES ('TestingName', 30825919, 1002504155, 30825917, '2023-04-19', '2023-04-21')
UPDATE
Update can be executed by specifying the AccountId and AbTestId in the WHERE Clause. The columns that are not read-only can be Updated.
For example:
UPDATE AbTest SET AbTestName = 'TestingName2' WHERE AbTestId = '1000000643' AND AccountId = '1002504155'
DELETE
Delete can be executed by specifying the AccountId and AbTestId in the WHERE Clause.
For example:
DELETE FROM AbTest WHERE AbTestId = '1000000643' AND AccountId = '1002504155'
Columns
Name | Type | ReadOnly | References | Description |
AbTestId | Int64 | False |
A/B test ID. | |
AbTestName | String | False |
A/B test name. | |
ACampaignId | Int64 | False |
Campaign ID of Campaign A. | |
ACampaignName | String | False |
Campaign Name of Campaign A. | |
ACampaignUserStatus | String | False |
It describes ad delivery settings of campaign. | |
AccountId | Int64 | False |
DisplayAdsAccounts.AccountId |
Account Id. |
BCampaignId | Int64 | False |
Campaign ID of Campaign B. | |
BCampaignName | String | False |
Campaign Name of Campaign B. | |
BCampaignUserStatus | String | False |
It describes ad delivery settings of campaign. | |
Description | String | False |
Description text. | |
EndDate | String | False |
End date. | |
IsRemoveDescription | String | False |
It is a flag for removing an information item. | |
StartDate | String | False |
Start date. | |
Status | String | False |
It shows AbTestServiceStatus status. |