Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ Console.WriteLine(resp.Slug);

```csharp
Notification notification = client.Notification.GetNotificationByTrackingId("<tracking_id>");
Console.WriteLine(notificaiton.Emails[0]);
Console.WriteLine(notification.Emails[0]);
```

**POST** /notifications/:id/add
Expand All @@ -318,8 +318,8 @@ notification.Emails = new string?[] { "<your_email>" };
request.Notification = notification;
options.AddNotificationByTrackingIdRequest = request;

Notification notification = client.Notification.AddNotificationByTrackingId("<tracking_id>", options);
Console.WriteLine(notification.Emails[0]);
Notification result = client.Notification.AddNotificationByTrackingId("<tracking_id>", options);
Console.WriteLine(result.Emails[0]);
```

**POST** /notifications/:id/remove
Expand All @@ -332,8 +332,8 @@ notification.Emails = new string?[] { "<your_email>" };
request.Notification = notification;
options.DeleteNotificationByTrackingIdRequest = request;

Notification notification = client.Notification.DeleteNotificationByTrackingId("<tracking_id>", options);
Console.WriteLine(notification.Emails[0]);
Notification result = client.Notification.DeleteNotificationByTrackingId("<tracking_id>", options);
Console.WriteLine(result.Emails[0]);
```

### /estimated-delivery-date
Expand Down
Binary file modified icon.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.