All URIs are relative to https://api.sendinblue.com/v3
Method | HTTP request | Description |
---|---|---|
conversations_agent_online_ping_post | POST /conversations/agentOnlinePing | Sets agent’s status to online for 2-3 minutes |
conversations_messages_id_delete | DELETE /conversations/messages/{id} | Delete a message sent by an agent |
conversations_messages_id_get | GET /conversations/messages/{id} | Get a message |
conversations_messages_id_put | PUT /conversations/messages/{id} | Update a message sent by an agent |
conversations_messages_post | POST /conversations/messages | Send a message as an agent |
conversations_pushed_messages_id_delete | DELETE /conversations/pushedMessages/{id} | Delete an automated message |
conversations_pushed_messages_id_get | GET /conversations/pushedMessages/{id} | Get an automated message |
conversations_pushed_messages_id_put | PUT /conversations/pushedMessages/{id} | Update an automated message |
conversations_pushed_messages_post | POST /conversations/pushedMessages | Send an automated message to a visitor |
conversations_agent_online_ping_post(body)
Sets agent’s status to online for 2-3 minutes
We recommend pinging this endpoint every minute for as long as the agent has to be considered online.
# load the gem
require 'sib-api-v3-sdk'
# setup authorization
SibApiV3Sdk.configure do |config|
# Configure API key authorization: api-key
config.api_key['api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['api-key'] = 'Bearer'
# Configure API key authorization: partner-key
config.api_key['partner-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['partner-key'] = 'Bearer'
end
api_instance = SibApiV3Sdk::ConversationsApi.new
body = SibApiV3Sdk::Body12.new # Body12 | Agent fields.
begin
#Sets agent’s status to online for 2-3 minutes
api_instance.conversations_agent_online_ping_post(body)
rescue SibApiV3Sdk::ApiError => e
puts "Exception when calling ConversationsApi->conversations_agent_online_ping_post: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
body | Body12 | Agent fields. |
nil (empty response body)
- Content-Type: application/json
- Accept: application/json
conversations_messages_id_delete(id)
Delete a message sent by an agent
Only agents’ messages can be deleted.
# load the gem
require 'sib-api-v3-sdk'
# setup authorization
SibApiV3Sdk.configure do |config|
# Configure API key authorization: api-key
config.api_key['api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['api-key'] = 'Bearer'
# Configure API key authorization: partner-key
config.api_key['partner-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['partner-key'] = 'Bearer'
end
api_instance = SibApiV3Sdk::ConversationsApi.new
id = 'id_example' # String | ID of the message
begin
#Delete a message sent by an agent
api_instance.conversations_messages_id_delete(id)
rescue SibApiV3Sdk::ApiError => e
puts "Exception when calling ConversationsApi->conversations_messages_id_delete: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ID of the message |
nil (empty response body)
- Content-Type: application/json
- Accept: application/json
ConversationsMessage conversations_messages_id_get(id)
Get a message
# load the gem
require 'sib-api-v3-sdk'
# setup authorization
SibApiV3Sdk.configure do |config|
# Configure API key authorization: api-key
config.api_key['api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['api-key'] = 'Bearer'
# Configure API key authorization: partner-key
config.api_key['partner-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['partner-key'] = 'Bearer'
end
api_instance = SibApiV3Sdk::ConversationsApi.new
id = 'id_example' # String | ID of the message
begin
#Get a message
result = api_instance.conversations_messages_id_get(id)
p result
rescue SibApiV3Sdk::ApiError => e
puts "Exception when calling ConversationsApi->conversations_messages_id_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ID of the message |
- Content-Type: application/json
- Accept: application/json
ConversationsMessage conversations_messages_id_put(id, opts)
Update a message sent by an agent
Only agents’ messages can be edited.
# load the gem
require 'sib-api-v3-sdk'
# setup authorization
SibApiV3Sdk.configure do |config|
# Configure API key authorization: api-key
config.api_key['api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['api-key'] = 'Bearer'
# Configure API key authorization: partner-key
config.api_key['partner-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['partner-key'] = 'Bearer'
end
api_instance = SibApiV3Sdk::ConversationsApi.new
id = 'id_example' # String | ID of the message
opts = {
body: SibApiV3Sdk::Body9.new # Body9 |
}
begin
#Update a message sent by an agent
result = api_instance.conversations_messages_id_put(id, opts)
p result
rescue SibApiV3Sdk::ApiError => e
puts "Exception when calling ConversationsApi->conversations_messages_id_put: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ID of the message | |
body | Body9 | [optional] |
- Content-Type: application/json
- Accept: application/json
ConversationsMessage conversations_messages_post(body)
Send a message as an agent
# load the gem
require 'sib-api-v3-sdk'
# setup authorization
SibApiV3Sdk.configure do |config|
# Configure API key authorization: api-key
config.api_key['api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['api-key'] = 'Bearer'
# Configure API key authorization: partner-key
config.api_key['partner-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['partner-key'] = 'Bearer'
end
api_instance = SibApiV3Sdk::ConversationsApi.new
body = SibApiV3Sdk::Body8.new # Body8 | Message fields.
begin
#Send a message as an agent
result = api_instance.conversations_messages_post(body)
p result
rescue SibApiV3Sdk::ApiError => e
puts "Exception when calling ConversationsApi->conversations_messages_post: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
body | Body8 | Message fields. |
- Content-Type: application/json
- Accept: application/json
conversations_pushed_messages_id_delete(id)
Delete an automated message
# load the gem
require 'sib-api-v3-sdk'
# setup authorization
SibApiV3Sdk.configure do |config|
# Configure API key authorization: api-key
config.api_key['api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['api-key'] = 'Bearer'
# Configure API key authorization: partner-key
config.api_key['partner-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['partner-key'] = 'Bearer'
end
api_instance = SibApiV3Sdk::ConversationsApi.new
id = 'id_example' # String | ID of the message
begin
#Delete an automated message
api_instance.conversations_pushed_messages_id_delete(id)
rescue SibApiV3Sdk::ApiError => e
puts "Exception when calling ConversationsApi->conversations_pushed_messages_id_delete: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ID of the message |
nil (empty response body)
- Content-Type: application/json
- Accept: application/json
ConversationsMessage conversations_pushed_messages_id_get(id)
Get an automated message
# load the gem
require 'sib-api-v3-sdk'
# setup authorization
SibApiV3Sdk.configure do |config|
# Configure API key authorization: api-key
config.api_key['api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['api-key'] = 'Bearer'
# Configure API key authorization: partner-key
config.api_key['partner-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['partner-key'] = 'Bearer'
end
api_instance = SibApiV3Sdk::ConversationsApi.new
id = 'id_example' # String | ID of the message sent previously
begin
#Get an automated message
result = api_instance.conversations_pushed_messages_id_get(id)
p result
rescue SibApiV3Sdk::ApiError => e
puts "Exception when calling ConversationsApi->conversations_pushed_messages_id_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ID of the message sent previously |
- Content-Type: application/json
- Accept: application/json
ConversationsMessage conversations_pushed_messages_id_put(id, body)
Update an automated message
# load the gem
require 'sib-api-v3-sdk'
# setup authorization
SibApiV3Sdk.configure do |config|
# Configure API key authorization: api-key
config.api_key['api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['api-key'] = 'Bearer'
# Configure API key authorization: partner-key
config.api_key['partner-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['partner-key'] = 'Bearer'
end
api_instance = SibApiV3Sdk::ConversationsApi.new
id = 'id_example' # String | ID of the message
body = SibApiV3Sdk::Body11.new # Body11 |
begin
#Update an automated message
result = api_instance.conversations_pushed_messages_id_put(id, body)
p result
rescue SibApiV3Sdk::ApiError => e
puts "Exception when calling ConversationsApi->conversations_pushed_messages_id_put: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ID of the message | |
body | Body11 |
- Content-Type: application/json
- Accept: application/json
ConversationsMessage conversations_pushed_messages_post(body)
Send an automated message to a visitor
Example of automated messages: order status, announce new features in your web app, etc.
# load the gem
require 'sib-api-v3-sdk'
# setup authorization
SibApiV3Sdk.configure do |config|
# Configure API key authorization: api-key
config.api_key['api-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['api-key'] = 'Bearer'
# Configure API key authorization: partner-key
config.api_key['partner-key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['partner-key'] = 'Bearer'
end
api_instance = SibApiV3Sdk::ConversationsApi.new
body = SibApiV3Sdk::Body10.new # Body10 |
begin
#Send an automated message to a visitor
result = api_instance.conversations_pushed_messages_post(body)
p result
rescue SibApiV3Sdk::ApiError => e
puts "Exception when calling ConversationsApi->conversations_pushed_messages_post: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
body | Body10 |
- Content-Type: application/json
- Accept: application/json