get method
Returns details about a membership.
For an example, see Get details about a user's or Google Chat app's membership. Requires authentication. Supports app authentication and user authentication.
Request parameters:
name
- Required. Resource name of the membership to retrieve. To get the
app's own membership
by using user authentication,
you can optionally use spaces/{space}/members/app
. Format:
spaces/{space}/members/{member}
or spaces/{space}/members/app
When
authenticated as a user,
you can use the user's email as an alias for {member}
. For example,
spaces/{space}/members/example@gmail.com
where example@gmail.com
is
the email of the Google Chat user.
Value must have pattern ^spaces/\[^/\]+/members/\[^/\]+$
.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Membership.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<Membership> get(
core.String name, {
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$name');
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return Membership.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}