Gmail Postmaster Tools API . domains . users

Instance Methods

close()

Close httplib2 connections.

create(parent, body=None, x__xgafv=None)

[Developer Preview](https://developers.google.com/workspace/preview): Creates a user, who has access to a domain. Returns INVALID_ARGUMENT if a user is not provided.

delete(name, x__xgafv=None)

[Developer Preview](https://developers.google.com/workspace/preview): Deletes a user from a domain. Returns NOT_FOUND if the user does not exist.

get(name, x__xgafv=None)

[Developer Preview](https://developers.google.com/workspace/preview): Retrieves detailed information about a user that has access to a domain. Returns NOT_FOUND if the user does not exist.

list(parent, pageSize=None, pageToken=None, x__xgafv=None)

[Developer Preview](https://developers.google.com/workspace/preview): Lists the users that have access to a domain.

list_next()

Retrieves the next page of results.

patch(name, body=None, updateMask=None, x__xgafv=None)

[Developer Preview](https://developers.google.com/workspace/preview): Updates a user for a domain. Only Owners and Admins can execute this RPC, only a user's domain permission will be allowed to be updated. Returns NOT_FOUND if the user does not exist. Returns INVALID_ARGUMENT if a permission is not provided or is PERMISSION_UNSPECIFIED, NONE, or OWNER.

Method Details

close()
Close httplib2 connections.
create(parent, body=None, x__xgafv=None)
[Developer Preview](https://developers.google.com/workspace/preview): Creates a user, who has access to a domain. Returns INVALID_ARGUMENT if a user is not provided.

Args:
  parent: string, Required. The parent resource where this user will be created. Format: domains/{domain} (required)
  body: object, The request body.
    The object takes the form of:

{ # [Developer Preview](https://developers.google.com/workspace/preview): Request message for CreateUser.
  "permission": "A String", # Optional. Specifies the permission level to give the user for the specified domain. If not specified, the default value for this field is READER.
  "userId": "A String", # Required. The user to create.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # [Developer Preview](https://developers.google.com/workspace/preview): Information about a user's access to a domain.
  "accessGranter": "A String", # Output only. The user that added the current user.
  "createTime": "A String", # Output only. The time the user was granted access.
  "name": "A String", # Identifier. The resource name of the user. Format: users/{user} Note: {user} is the user's email address.
  "permission": "A String", # The permission level that the user has for the specified domain.
  "user": "A String", # The user's email address.
}
delete(name, x__xgafv=None)
[Developer Preview](https://developers.google.com/workspace/preview): Deletes a user from a domain. Returns NOT_FOUND if the user does not exist.

Args:
  name: string, Required. The resource name of the user to delete. Format: domains/{domain}/users/{user} (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
}
get(name, x__xgafv=None)
[Developer Preview](https://developers.google.com/workspace/preview): Retrieves detailed information about a user that has access to a domain. Returns NOT_FOUND if the user does not exist.

Args:
  name: string, Required. The resource name of the user to retrieve. Format: `domains/{domain}/users/{user}` (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # [Developer Preview](https://developers.google.com/workspace/preview): Information about a user's access to a domain.
  "accessGranter": "A String", # Output only. The user that added the current user.
  "createTime": "A String", # Output only. The time the user was granted access.
  "name": "A String", # Identifier. The resource name of the user. Format: users/{user} Note: {user} is the user's email address.
  "permission": "A String", # The permission level that the user has for the specified domain.
  "user": "A String", # The user's email address.
}
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
[Developer Preview](https://developers.google.com/workspace/preview): Lists the users that have access to a domain.

Args:
  parent: string, Required. The parent resource name for which to list users. Format: `domains/{domain}` (required)
  pageSize: integer, Optional. Requested page size. Server may return fewer users than requested. If unspecified, the default value for this field is 10. The maximum value for this field is 200.
  pageToken: string, Optional. The next_page_token value returned from a previous List request, if any.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # [Developer Preview](https://developers.google.com/workspace/preview): Response message for ListUsers.
  "nextPageToken": "A String", # Token to retrieve the next page of results, or empty if there are no more results in the list.
  "users": [ # The users that have access to the domain.
    { # [Developer Preview](https://developers.google.com/workspace/preview): Information about a user's access to a domain.
      "accessGranter": "A String", # Output only. The user that added the current user.
      "createTime": "A String", # Output only. The time the user was granted access.
      "name": "A String", # Identifier. The resource name of the user. Format: users/{user} Note: {user} is the user's email address.
      "permission": "A String", # The permission level that the user has for the specified domain.
      "user": "A String", # The user's email address.
    },
  ],
}
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.
        
patch(name, body=None, updateMask=None, x__xgafv=None)
[Developer Preview](https://developers.google.com/workspace/preview): Updates a user for a domain. Only Owners and Admins can execute this RPC, only a user's domain permission will be allowed to be updated. Returns NOT_FOUND if the user does not exist. Returns INVALID_ARGUMENT if a permission is not provided or is PERMISSION_UNSPECIFIED, NONE, or OWNER.

Args:
  name: string, Identifier. The resource name of the user. Format: users/{user} Note: {user} is the user's email address. (required)
  body: object, The request body.
    The object takes the form of:

{ # [Developer Preview](https://developers.google.com/workspace/preview): Information about a user's access to a domain.
  "accessGranter": "A String", # Output only. The user that added the current user.
  "createTime": "A String", # Output only. The time the user was granted access.
  "name": "A String", # Identifier. The resource name of the user. Format: users/{user} Note: {user} is the user's email address.
  "permission": "A String", # The permission level that the user has for the specified domain.
  "user": "A String", # The user's email address.
}

  updateMask: string, The list of fields to update.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # [Developer Preview](https://developers.google.com/workspace/preview): Information about a user's access to a domain.
  "accessGranter": "A String", # Output only. The user that added the current user.
  "createTime": "A String", # Output only. The time the user was granted access.
  "name": "A String", # Identifier. The resource name of the user. Format: users/{user} Note: {user} is the user's email address.
  "permission": "A String", # The permission level that the user has for the specified domain.
  "user": "A String", # The user's email address.
}