/// <summary> /// fetch /// </summary> /// /// <param name="options"> Fetch Service parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Service </returns> public static async System.Threading.Tasks.Task <ServiceResource> FetchAsync(FetchServiceOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
/// <summary> /// fetch /// </summary> /// <param name="pathSid"> The unique string that identifies the resource </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Service </returns> public static async System.Threading.Tasks.Task <ServiceResource> FetchAsync(string pathSid, ITwilioRestClient client = null) { var options = new FetchServiceOptions(pathSid); return(await FetchAsync(options, client)); }
/// <summary> /// fetch /// </summary> /// /// <param name="options"> Fetch Service parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Service </returns> public static ServiceResource Fetch(FetchServiceOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
private static Request BuildFetchRequest(FetchServiceOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.IpMessaging, "/v2/Services/" + options.PathSid + "", queryParams: options.GetParams() )); }
/// <summary> /// fetch /// </summary> /// /// <param name="pathSid"> The sid </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Service </returns> public static ServiceResource Fetch(string pathSid, ITwilioRestClient client = null) { var options = new FetchServiceOptions(pathSid); return(Fetch(options, client)); }