Method: accounts.adclients.adunits.getAdcode
HTTP request
GET https://adsense.googleapis.com/v2/{name=accounts/*/adclients/*/adunits/*}/adcode
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters |
name |
string
Required. Name of the adunit for which to get the adcode. Format: accounts/{account}/adclients/{adclient}/adunits/{adunit}
|
Request body
The request body must be empty.
Response body
Representation of the ad unit code for a given ad unit.
For more information, see About the AdSense code and Where to place the ad code in your HTML.
If successful, the response body contains data with the following structure:
JSON representation |
{
"adCode": string
} |
Fields |
adCode |
string
Output only. The code snippet to add to the body of an HTML page.
|
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/adsense
https://www.googleapis.com/auth/adsense.readonly
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-02-19 UTC.
[null,null,["Last updated 2025-02-19 UTC."],[[["Retrieves the ad unit code for a specified ad unit, allowing publishers to implement ads on their webpages."],["Requires the ad unit name in the request URL, formatted as accounts/{account}/adclients/{adclient}/adunits/{adunit}."],["Returns the ad code snippet in the response body, which can be directly added to an HTML page."],["Needs authorization with either `https://www.googleapis.com/auth/adsense` or `https://www.googleapis.com/auth/adsense.readonly` scope."]]],["This describes retrieving an ad unit's code via a GET request to `https://adsense.googleapis.com/v2/{name=accounts/*/adclients/*/adunits/*}/adcode`. The `name` parameter, formatted as `accounts/{account}/adclients/{adclient}/adunits/{adunit}`, is required within the path. The request body must be empty. A successful response contains the ad code within a JSON structure: `{ \"adCode\": string }`. Authorization requires either the `adsense` or `adsense.readonly` OAuth scope. The `adcode` is a string output designed to be added into the HTML of a website.\n"]]