List the payments for this AdSense account. Try it now.
Request
HTTP request
GET https://www.googleapis.com/adsense/v1.4/payments
Parameters
Parameter name | Value | Description |
---|
Authorization
This request requires authorization with at least one of the following scopes:
Scope |
---|
https://www.googleapis.com/auth/adsense |
https://www.googleapis.com/auth/adsense.readonly |
For more information, see the authentication and authorization page.
Request body
Do not supply a request body with this method.
Response
If successful, this method returns a response body with the following structure:
{ "kind": "adsense#payments", "items": [ { "kind": "adsense#payment", "id": string, "paymentDate": string, "paymentAmount": string, "paymentAmountCurrencyCode": string } ] }
Property name | Value | Description | Notes |
---|---|---|---|
kind |
string |
Kind of list this is, in this case adsense#payments. | |
items[] |
list |
The list of Payments for the account. One or both of a) the account's most recent payment; and b) the account's upcoming payment. | |
items[].kind |
string |
Kind of resource this is, in this case adsense#payment. | |
items[].id |
string |
Unique identifier of this Payment. | |
items[].paymentDate |
string |
The date this payment was/will be credited to the user, or none if the payment threshold has not been met. | |
items[].paymentAmount |
string |
The amount to be paid. | |
items[].paymentAmountCurrencyCode |
string |
The currency code for the amount to be paid. |
Try it!
Use the APIs Explorer below to call this method on live data and see the response.