getPushRuleActions method
This endpoint get the actions for the specified push rule.
kind
The kind of rule
ruleId
The identifier for the rule.
returns actions
:
The action(s) to perform for this rule.
Implementation
Future<List<Object?>> getPushRuleActions(
PushRuleKind kind,
String ruleId,
) async {
final requestUri = Uri(
path:
'_matrix/client/v3/pushrules/global/${Uri.encodeComponent(kind.name)}/${Uri.encodeComponent(ruleId)}/actions',
);
final request = Request('GET', baseUri!.resolveUri(requestUri));
request.headers['authorization'] = 'Bearer ${bearerToken!}';
final response = await httpClient.send(request);
final responseBody = await response.stream.toBytes();
if (response.statusCode != 200) unexpectedResponse(response, responseBody);
final responseString = utf8.decode(responseBody);
final json = jsonDecode(responseString);
return (json['actions'] as List).map((v) => v as Object?).toList();
}