/// <summary> /// Retrieve a list of Credentials belonging to the account used to make the request /// </summary> /// /// <param name="pathAccountSid"> The account_sid </param> /// <param name="pageSize"> Page size </param> /// <param name="limit"> Record limit </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of CredentialList </returns> public static async System.Threading.Tasks.Task <ResourceSet <CredentialListResource> > ReadAsync(string pathAccountSid = null, int?pageSize = null, long?limit = null, ITwilioRestClient client = null) { var options = new ReadCredentialListOptions { PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit }; return(await ReadAsync(options, client)); }
/// <summary> /// Retrieve a list of Credentials belonging to the account used to make the request /// </summary> /// /// <param name="pathAccountSid"> The account_sid </param> /// <param name="pageSize"> Page size </param> /// <param name="limit"> Record limit </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of CredentialList </returns> public static ResourceSet <CredentialListResource> Read(string pathAccountSid = null, int?pageSize = null, long?limit = null, ITwilioRestClient client = null) { var options = new ReadCredentialListOptions { PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit }; return(Read(options, client)); }
/// <summary> /// Retrieve a list of Credentials belonging to the account used to make the request /// </summary> /// /// <param name="options"> Read CredentialList parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of CredentialList </returns> public static ResourceSet <CredentialListResource> Read(ReadCredentialListOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildReadRequest(options, client)); var page = Page <CredentialListResource> .FromJson("credential_lists", response.Content); return(new ResourceSet <CredentialListResource>(page, options, client)); }
private static Request BuildReadRequest(ReadCredentialListOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.Api, "/2010-04-01/Accounts/" + (options.PathAccountSid ?? client.AccountSid) + "/SIP/CredentialLists.json", queryParams: options.GetParams() )); }
/// <summary> /// Retrieve a list of Credentials belonging to the account used to make the request /// </summary> /// /// <param name="options"> Read CredentialList parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of CredentialList </returns> public static async System.Threading.Tasks.Task <ResourceSet <CredentialListResource> > ReadAsync(ReadCredentialListOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildReadRequest(options, client)); var page = Page <CredentialListResource> .FromJson("credential_lists", response.Content); return(new ResourceSet <CredentialListResource>(page, options, client)); }