AI-generated Key Takeaways
- 
          A LandingPage resource contains information about where a user is directed after clicking an ad, including its URL and potential deep links. 
- 
          A DeepLink resource provides details for directing users to a mobile app, including the app URL and a fallback URL for users without the app installed. 
- 
          Key fields for a LandingPage include id,name,url,archived,advertiserId, anddeepLinks.
- 
          Key fields for a DeepLink include kind,appUrl,fallbackUrl,remarketingListIds, andmobileApp.
- 
          Methods available for managing landing pages include get,insert,list,patch, andupdate.
Resource: LandingPage
Contains information about where a user's browser is taken after the user clicks an ad.
| JSON representation | 
|---|
| {
  "id": string,
  "name": string,
  "url": string,
  "archived": boolean,
  "advertiserId": string,
  "deepLinks": [
    {
      object ( | 
| Fields | |
|---|---|
| id | 
 ID of this landing page. This is a read-only, auto-generated field. | 
| name | 
 Name of this landing page. This is a required field. It must be less than 256 characters long. | 
| url | 
 URL of this landing page. This is a required field. | 
| archived | 
 Whether this landing page has been archived. | 
| advertiserId | 
 Advertiser ID of this landing page. This is a required field. | 
| deepLinks[] | 
 Links that will direct the user to a mobile app, if installed. | 
| kind | 
 Identifies what kind of resource this is. Value: the fixed string 
 . | 
DeepLink
Contains information about a landing page deep link.
| JSON representation | 
|---|
| {
  "kind": string,
  "appUrl": string,
  "fallbackUrl": string,
  "remarketingListIds": [
    string
  ],
  "mobileApp": {
    object ( | 
| Fields | |
|---|---|
| kind | 
 Identifies what kind of resource this is. Value: the fixed string 
 . | 
| appUrl | 
 The URL of the mobile app being linked to. | 
| fallbackUrl | 
 The fallback URL. This URL will be served to users who do not have the mobile app installed. | 
| remarketingListIds[] | 
 Ads served to users on these remarketing lists will use this deep link. Applicable when 
 is 
 . | 
| mobileApp | 
 The mobile app targeted by this deep link. | 
| Methods | |
|---|---|
| 
 | Gets one landing page by ID. | 
| 
 | Inserts a new landing page. | 
| 
 | Retrieves a list of landing pages. | 
| 
 | Updates an existing landing page. | 
| 
 | Updates an existing landing page. |