AppLinks
Create, Read or Update app link 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 '='.
- AppLinkId supports the '=,IN'.
For example:
SELECT * FROM AppLinks WHERE AccountId = '1234339' SELECT * FROM AppLinks WHERE AccountId = '1234339' AND AppLinkId = '73'
INSERT
Insert can be executed by specifying the AccountId, AppId, AppLinkPlatform, AppVendorId columns. The columns that are not read-only can be inserted optionally. Following is an example of how to inserting into AppLinks table
INSERT INTO AppLinks (AccountId, AppId, AppLinkPlatform, AppVendorId) VALUES('1234339', 'testtest', 'ANDROID', 'Adjust')
UPDATE
Update can be executed by specifying the AppLinkId and LinkStatus in the WHERE Clause. The columns that are not read-only can be Updated. For example:
UPDATE AppLinks SET LinkStatus = 'ENABLED' WHERE AccountId = '1234339' AND AppLinkId = '73'
Columns
Name | Type | ReadOnly | References | Description |
AppLinkId [KEY] | Int64 | True |
App Link ID. | |
AccountId | Int64 | True |
SearchAdsAccounts.AccountId |
Account ID. |
AppId | String | True |
App ID. | |
AppLinkPlatform | String | False |
App Link Platform. 使用できる値は次のとおりです。ANDROID, UNKNOWN | |
AppVendorId | String | False |
ApplinkVendors.AppVendorId |
App Vendor ID. |
AppVendorNameEn | String | False |
App Vendor Name in English. | |
AppVendorNameJa | String | False |
App Vendor Name in Japanese. | |
LinkId | String | False |
Link ID. | |
LinkStatus | String | False |
Link Status. 使用できる値は次のとおりです。ENABLED, DISABLED, UNKNOWN | |
SyncStatus | String | False |
Sync Status. 使用できる値は次のとおりです。IN_PROGRESS, COMPLETED, UNKNOWN |