Can I use to get bounces for the current date, based on the date?
GET /domain/bounces/date or GET /domain/bounces/created_at
Is this possible?
public static IRestResponse GetBounces() { RestClient client = new RestClient(); client.BaseUrl = "https://api.mailgun.net/v2"; client.Authenticator = new HttpBasicAuthenticator("api","key-3ax6xnjp29jd6fds4gc373sgvjxteol0"); RestRequest request = new RestRequest(); request.AddParameter("domain", "samples.mailgun.org", ParameterType.UrlSegment); request.Resource = "{domain}/bounces/{created_at}"; return client.Execute(request); }
Thank you