/gmail/v1/users/{userId}/settings/forwardingAddresses
GET
/gmail/v1/users/{userId}/settings/forwardingAddressesLists the forwarding addresses for the specified account.
Request
Path Params
userId
stringÂ
required
User's email address. The special value "me" can be used to indicate the authenticated user.
Request samples
Responses
Successful response(200)
Successful response
HTTP Code:Â 200
Content Type :Â JSONapplication/json
Data Schema
Response for the ListForwardingAddresses method.
forwardingAddresses
array[object (ForwardingAddress) {2}]Â
optional
List of addresses that may be used for forwarding.
forwardingEmail
stringÂ
optional
An email address to which messages can be forwarded.
verificationStatus
enum<string>Â
optional
Indicates whether this address has been verified and is usable for forwarding. Read-only.
Allowed values:
verificationStatusUnspecifiedacceptedpending
Example
{
"forwardingAddresses": [
{
"forwardingEmail": "string",
"verificationStatus": "verificationStatusUnspecified"
}
]
}
Last modified: 2 years ago