getPushCampaignBatchNotification method
GET /{version}/notifications/push/campaigns/{id}/batches/{batchId}/{notificationId}
Implementation
Future<Object?> getPushCampaignBatchNotification(
{required Object id,
required Object batchId,
required Object notificationId,
Map<String, Object?>? query,
Map<String, String>? headers}) {
return transport.send(
route:
'/{version}/notifications/push/campaigns/{id}/batches/{batchId}/{notificationId}',
method: 'GET',
query: query,
headers: headers,
pathParams: <String, Object?>{
'id': id,
'batchId': batchId,
'notificationId': notificationId
},
);
}