Resource Information
Method | POST |
---|---|
URL | https://public-api.wordpress.com/rest/v1.1/sites/$site/wordads/settings |
Requires authentication? | No |
Method Parameters
Parameter | Type | Description |
---|---|---|
$site | (int|string) | Site ID or domain |
Query Parameters
Parameter | Type | Description |
---|---|---|
context | (string) |
|
http_envelope | (bool) |
|
pretty | (bool) |
|
meta | (string) | Optional. Loads data from the endpoints found in the 'meta' part of the response. Comma-separated list. Example: meta=site,likes |
fields | (string) | Optional. Returns specified fields only. Comma-separated list. Example: fields=ID,title |
callback | (string) | An optional JSONP callback function. |
Request Parameters
Parameter | Type | Description |
---|---|---|
paypal | (string) | PayPal Address |
who_owns | (string) | Select box response for type of site owner. |
us_resident | (string) | US residence response. |
taxid | (string) | Social Security Number or Tax ID |
state | (string) | State select response. |
zip | (string) | Zip Code |
name | (string) | Full Name or Business Name |
addr1 | (string) | Postal Address line 1 |
addr2 | (string) | Postal Address line 2 |
city | (string) | City |
show_to_logged_in | (string) | Show ads to |
tos | (string) | Terms of Service checkbox |
optimized_ads | (bool) | Show optimzed ads |
display_options | (array) | Array of booleans: enable_header_ad, second_belowpost, sidebar, display_(front_page|post|page|archive) |
ccpa_enabled | (bool) | Enable targeted advertising to California site visitors (CCPA) |
ccpa_privacy_policy_url | (string) | Displayed at the bottom of the CCPA notice popup |
Response Parameters
Parameter | Type | Description |
---|---|---|
updated | (array) | List of the updated variables. |
Resource Errors
These are the possible errors returned by this endpoint.
HTTP Code | Error Identifier | Error Message |
---|---|---|
403 | Forbidden | You do not have the capability to manage settings for this site. |
401 | Unauthorized | You must be logged-in to manage settings. |
403 | unauthorized | User cannot access this private blog. |
403 | unauthorized | User cannot access this restricted blog |
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?php $options = array ( 'http' => array ( 'ignore_errors' => true, 'method' => 'POST' , ), ); $context = stream_context_create( $options ); $response = file_get_contents ( false, $context ); $response = json_decode( $response ); ?> |
Response
1 2 3 | { "sent" : true } |