chatBskyGroupUpdateJoinRequestsRead function
Marks all join requests as read for the group owner.
Implementation
Future<XRPCResponse<EmptyData>> chatBskyGroupUpdateJoinRequestsRead({
required String convoId,
required ServiceContext $ctx,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.chatBskyGroupUpdateJoinRequestsRead,
service: $service,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'convoId': convoId},
);