checkAccessByEmail method
Future<Map<String, dynamic> >
checkAccessByEmail({
- required CheckAccessOrInviteByEmailRequest body,
Returns the list of emails from the input list that do not have access to site.
Permissions required: Permission to access the Confluence site ('Can use' global permission).
Implementation
Future<Map<String, dynamic>> checkAccessByEmail(
{required CheckAccessOrInviteByEmailRequest body}) async {
return await _client.send(
'post',
'user/access/check-access-by-email',
body: body.toJson(),
) as Map<String, Object?>;
}