All URIs are relative to https://api.messente.com/v1
Method | HTTP request | Description |
---|---|---|
create_group | POST /phonebook/groups | Creates a new group with the provided name |
delete_group | DELETE /phonebook/groups/{groupId} | Deletes a group |
fetch_group | GET /phonebook/groups/{groupId} | Lists a group |
fetch_groups | GET /phonebook/groups | Returns all groups |
update_group | PUT /phonebook/groups/{groupId} | Updates a group with the provided name |
create_group(group_name)
Creates a new group with the provided name
require 'time'
require 'messente_api'
# setup authorization
MessenteApi.configure do |config|
# Configure HTTP basic authorization: basicAuth
config.username = 'YOUR USERNAME'
config.password = 'YOUR PASSWORD'
end
api_instance = MessenteApi::GroupsApi.new
group_name = MessenteApi::GroupName.new({name: 'name_example'}) # GroupName |
begin
# Creates a new group with the provided name
result = api_instance.create_group(group_name)
p result
rescue MessenteApi::ApiError => e
puts "Error when calling GroupsApi->create_group: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> create_group_with_http_info(group_name)
begin
# Creates a new group with the provided name
data, status_code, headers = api_instance.create_group_with_http_info(group_name)
p status_code # => 2xx
p headers # => { ... }
p data # => <GroupEnvelope>
rescue MessenteApi::ApiError => e
puts "Error when calling GroupsApi->create_group_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
group_name | GroupName |
- Content-Type: application/json
- Accept: application/json
delete_group(group_id)
Deletes a group
require 'time'
require 'messente_api'
# setup authorization
MessenteApi.configure do |config|
# Configure HTTP basic authorization: basicAuth
config.username = 'YOUR USERNAME'
config.password = 'YOUR PASSWORD'
end
api_instance = MessenteApi::GroupsApi.new
group_id = '5792a02a-e5c2-422b-a0a0-0ae65d814663' # String | String in UUID format
begin
# Deletes a group
api_instance.delete_group(group_id)
rescue MessenteApi::ApiError => e
puts "Error when calling GroupsApi->delete_group: #{e}"
end
This returns an Array which contains the response data (nil
in this case), status code and headers.
<Array(nil, Integer, Hash)> delete_group_with_http_info(group_id)
begin
# Deletes a group
data, status_code, headers = api_instance.delete_group_with_http_info(group_id)
p status_code # => 2xx
p headers # => { ... }
p data # => nil
rescue MessenteApi::ApiError => e
puts "Error when calling GroupsApi->delete_group_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
group_id | String | String in UUID format |
nil (empty response body)
- Content-Type: Not defined
- Accept: application/json
fetch_group(group_id)
Lists a group
require 'time'
require 'messente_api'
# setup authorization
MessenteApi.configure do |config|
# Configure HTTP basic authorization: basicAuth
config.username = 'YOUR USERNAME'
config.password = 'YOUR PASSWORD'
end
api_instance = MessenteApi::GroupsApi.new
group_id = '5792a02a-e5c2-422b-a0a0-0ae65d814663' # String | String in UUID format
begin
# Lists a group
result = api_instance.fetch_group(group_id)
p result
rescue MessenteApi::ApiError => e
puts "Error when calling GroupsApi->fetch_group: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> fetch_group_with_http_info(group_id)
begin
# Lists a group
data, status_code, headers = api_instance.fetch_group_with_http_info(group_id)
p status_code # => 2xx
p headers # => { ... }
p data # => <GroupEnvelope>
rescue MessenteApi::ApiError => e
puts "Error when calling GroupsApi->fetch_group_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
group_id | String | String in UUID format |
- Content-Type: Not defined
- Accept: application/json
fetch_groups
Returns all groups
require 'time'
require 'messente_api'
# setup authorization
MessenteApi.configure do |config|
# Configure HTTP basic authorization: basicAuth
config.username = 'YOUR USERNAME'
config.password = 'YOUR PASSWORD'
end
api_instance = MessenteApi::GroupsApi.new
begin
# Returns all groups
result = api_instance.fetch_groups
p result
rescue MessenteApi::ApiError => e
puts "Error when calling GroupsApi->fetch_groups: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> fetch_groups_with_http_info
begin
# Returns all groups
data, status_code, headers = api_instance.fetch_groups_with_http_info
p status_code # => 2xx
p headers # => { ... }
p data # => <GroupListEnvelope>
rescue MessenteApi::ApiError => e
puts "Error when calling GroupsApi->fetch_groups_with_http_info: #{e}"
end
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: application/json
update_group(group_id, group_name)
Updates a group with the provided name
require 'time'
require 'messente_api'
# setup authorization
MessenteApi.configure do |config|
# Configure HTTP basic authorization: basicAuth
config.username = 'YOUR USERNAME'
config.password = 'YOUR PASSWORD'
end
api_instance = MessenteApi::GroupsApi.new
group_id = '5792a02a-e5c2-422b-a0a0-0ae65d814663' # String | String in UUID format
group_name = MessenteApi::GroupName.new({name: 'name_example'}) # GroupName |
begin
# Updates a group with the provided name
result = api_instance.update_group(group_id, group_name)
p result
rescue MessenteApi::ApiError => e
puts "Error when calling GroupsApi->update_group: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> update_group_with_http_info(group_id, group_name)
begin
# Updates a group with the provided name
data, status_code, headers = api_instance.update_group_with_http_info(group_id, group_name)
p status_code # => 2xx
p headers # => { ... }
p data # => <GroupEnvelope>
rescue MessenteApi::ApiError => e
puts "Error when calling GroupsApi->update_group_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
group_id | String | String in UUID format | |
group_name | GroupName |
- Content-Type: application/json
- Accept: application/json