/// <summary> /// Fetch a push notification credential from your account /// </summary> /// <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 Credential </returns> public static async System.Threading.Tasks.Task <CredentialResource> FetchAsync(string pathSid, ITwilioRestClient client = null) { var options = new FetchCredentialOptions(pathSid); return(await FetchAsync(options, client)); }
/// <summary> /// Fetch a push notification credential from your account /// </summary> /// <param name="options"> Fetch Credential parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Credential </returns> public static CredentialResource Fetch(FetchCredentialOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
private static Request BuildFetchRequest(FetchCredentialOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.Conversations, "/v1/Credentials/" + options.PathSid + "", queryParams: options.GetParams(), headerParams: null )); }
/// <summary> /// Fetch a push notification credential from your account /// </summary> /// <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 Credential </returns> public static CredentialResource Fetch(string pathSid, ITwilioRestClient client = null) { var options = new FetchCredentialOptions(pathSid); return(Fetch(options, client)); }
/// <summary> /// Fetch a push notification credential from your account /// </summary> /// <param name="options"> Fetch Credential parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Credential </returns> public static async System.Threading.Tasks.Task <CredentialResource> FetchAsync(FetchCredentialOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }