chatBskyGroupRejectJoinRequest function

Future<XRPCResponse<EmptyData>> chatBskyGroupRejectJoinRequest({
  1. required String convoId,
  2. required String member,
  3. required ServiceContext $ctx,
  4. String? $service,
  5. Map<String, String>? $headers,
  6. Map<String, String>? $unknown,
})

NOTE: This is under active development and should be considered unstable while this note is here. Rejects a request to join a group (via join link) the user owns. Action taken by the group owner.

Implementation

Future<XRPCResponse<EmptyData>> chatBskyGroupRejectJoinRequest({
  required String convoId,
  required String member,
  required ServiceContext $ctx,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.post(
  ns.chatBskyGroupRejectJoinRequest,
  service: $service,
  headers: {'Content-type': 'application/json', ...?$headers},
  body: {...?$unknown, 'convoId': convoId, 'member': member},
);