Skip to content

Instantly share code, notes, and snippets.

@thinkingserious
Created July 18, 2014 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thinkingserious/e960ad85e81620d3515f to your computer and use it in GitHub Desktop.
Save thinkingserious/e960ad85e81620d3515f to your computer and use it in GitHub Desktop.
SendGrid Event Webhook Model
using Newtonsoft.Json;
using System.Collections.Generic;
namespace SendGridEventWebhook.Models
{
// This class models the data we POST from our Event Webhook stream
public class SendGridEvents
{
// Docs: https://sendgrid.com/docs/API_Reference/Webhooks/event.html
public string email { get; set; }
public int timestamp { get; set; }
public int uid { get; set; }
public int id { get; set; }
public string sendgrid_event_id { get; set; }
[JsonProperty("smtp-id")] // switched to underscore for consistancy
public string smtp_id { get; set; }
public string sg_message_id { get; set; }
[JsonProperty("event")] // event is protected keyword
public string sendgrid_event { get; set; }
public string type { get; set; }
public IList<string> category { get; set; }
public string reason { get; set; }
public string status { get; set; }
public string url { get; set; }
public string useragent { get; set; }
public string ip { get; set; }
// Add your custom fields here
public string purchase { get; set; } // this is a custom field sent by our tester
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment