/// <summary> /// Fetch a conversation from your service /// </summary> /// <param name="options"> Fetch Conversation parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of Conversation </returns> public static ConversationResource Fetch(FetchConversationOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }
/// <summary> /// Fetch a conversation from your service /// </summary> /// <param name="pathChatServiceSid"> The SID of the Conversation Service that the resource is associated with. </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 Conversation </returns> public static async System.Threading.Tasks.Task <ConversationResource> FetchAsync(string pathChatServiceSid, string pathSid, ITwilioRestClient client = null) { var options = new FetchConversationOptions(pathChatServiceSid, pathSid); return(await FetchAsync(options, client)); }
private static Request BuildFetchRequest(FetchConversationOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.Conversations, "/v1/Services/" + options.PathChatServiceSid + "/Conversations/" + options.PathSid + "", queryParams: options.GetParams(), headerParams: null )); }
/// <summary> /// Fetch a conversation from your service /// </summary> /// <param name="pathChatServiceSid"> The SID of the Conversation Service that the resource is associated with. </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 Conversation </returns> public static ConversationResource Fetch(string pathChatServiceSid, string pathSid, ITwilioRestClient client = null) { var options = new FetchConversationOptions(pathChatServiceSid, pathSid); return(Fetch(options, client)); }
/// <summary> /// Fetch a conversation from your service /// </summary> /// <param name="options"> Fetch Conversation parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of Conversation </returns> public static async System.Threading.Tasks.Task <ConversationResource> FetchAsync(FetchConversationOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildFetchRequest(options, client)); return(FromJson(response.Content)); }