/// <summary> /// Fetch the configuration of a conversation-scoped webhook /// </summary> /// <param name="options"> Fetch Webhook parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Webhook </returns> public static WebhookResource Fetch(FetchWebhookOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
/// <summary> /// Fetch the configuration of a conversation-scoped webhook /// </summary> /// <param name="pathConversationSid"> The unique ID of the Conversation for this webhook. </param> /// <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Webhook </returns> public static async System.Threading.Tasks.Task <WebhookResource> FetchAsync(string pathConversationSid, string pathSid, ITwilioRestClient client = null) { var options = new FetchWebhookOptions(pathConversationSid, pathSid); return(await FetchAsync(options, client)); }
/// <summary> /// Fetch the configuration of a conversation-scoped webhook /// </summary> /// <param name="options"> Fetch Webhook parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Webhook </returns> public static async System.Threading.Tasks.Task <WebhookResource> FetchAsync(FetchWebhookOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
private static Request BuildFetchRequest(FetchWebhookOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.Conversations, "/v1/Conversations/" + options.PathConversationSid + "/Webhooks/" + options.PathSid + "", queryParams: options.GetParams() )); }
/// <summary> /// Fetch the configuration of a conversation-scoped webhook /// </summary> /// <param name="pathConversationSid"> The unique ID of the Conversation for this webhook. </param> /// <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Webhook </returns> public static WebhookResource Fetch(string pathConversationSid, string pathSid, ITwilioRestClient client = null) { var options = new FetchWebhookOptions(pathConversationSid, pathSid); return(Fetch(options, client)); }