--- title: TextbotsApi --- :::error **The Ruby SDK is deprecated as of 9/16/2020** The Genesys Cloud Ruby SDK (v96.0.0) will be frozen at its current version level. Any new enhancements to our API or bug fixes will not be backported. If you do need to take advantage of new features or bug fixes outside the Genesys Cloud Ruby SDK, you will need to use the Genesys Cloud REST endpoints directly. More information can be found in the [Official Announcement](https://developer.mypurecloud.com/forum/t/announcement-genesys-cloud-ruby-sdk-end-of-life/8850). ::: ## PureCloud::TextbotsApi All URIs are relative to *https://api.mypurecloud.com* Method | Description ------------- | ------------- | ------------- [**post_textbots_bots_execute**](TextbotsApi.html#post_textbots_bots_execute) | Send an intent to a bot to start a dialog/interact with it via text {: class="table table-striped"} ## [**PostTextResponse**](PostTextResponse.html) post_textbots_bots_execute(post_text_request) Send an intent to a bot to start a dialog/interact with it via text This will either start a bot with the given id or relay a communication to an existing bot session. Wraps POST /api/v2/textbots/bots/execute Requires ANY permissions: * textbots:session:execute ### Example ```{"language":"ruby"} # load the gem require 'purecloudplatformclientv2' # setup authorization @secret = ENV['PURECLOUD_SECRET'] @id = ENV['PURECLOUD_CLIENT_ID'] environment = "mypurecloud.com" @authToken = PureCloud.authenticate_with_client_credentials @id, @secret, environment PureCloud.configure do |config| config.access_token = @authToken end api_instance = PureCloud::TextbotsApi.new post_text_request = PureCloud::PostTextRequest.new # PostTextRequest | begin #Send an intent to a bot to start a dialog/interact with it via text result = api_instance.post_textbots_bots_execute(post_text_request) p result rescue PureCloud::ApiError => e puts "Exception when calling TextbotsApi->post_textbots_bots_execute: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **post_text_request** | [**PostTextRequest**](PostTextRequest.html)| | | {: class="table table-striped"} ### Return type [**PostTextResponse**](PostTextResponse.html) ### HTTP request headers - **Content-Type**: application/json - **Accept**: application/json