generateNotification method

Generate a notification for a user (deprecated, use v3 instead).

This endpoint requires admin access.

Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.

Parameters:

  • apiVersion Defaults to "v2".
  • userId ID of the user.
  • oCSAPIRequest Required to be true for the API request to pass. Defaults to true.

Status codes:

  • 200: Notification generated successfully
  • 400: Generating notification is not possible
  • 404: User not found
  • 500

See:

Implementation

@Deprecated('')
Future<_i1.DynamiteResponse<ApiGenerateNotificationResponseApplicationJson, void>> generateNotification({
  required String userId,
  required ApiGenerateNotificationRequestApplicationJson $body,
  ApiGenerateNotificationApiVersion? apiVersion,
  bool? oCSAPIRequest,
}) async {
  final _request = $generateNotification_Request(
    userId: userId,
    apiVersion: apiVersion,
    oCSAPIRequest: oCSAPIRequest,
    $body: $body,
  );
  final _streamedResponse = await _rootClient.httpClient.send(_request);
  final _response = await _i3.Response.fromStream(_streamedResponse);

  final _serializer = $generateNotification_Serializer();
  return _i1.ResponseConverter<ApiGenerateNotificationResponseApplicationJson, void>(_serializer).convert(_response);
}