All URIs are relative to https://api.messente.com/v1
Method | HTTP request | Description |
---|---|---|
fetch_info | POST /hlr/sync | Requests info about phone numbers |
fetch_info(numbers_to_investigate)
Requests info about phone numbers
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::NumberLookupApi.new
numbers_to_investigate = MessenteApi::NumbersToInvestigate.new({numbers: ['numbers_example']}) # NumbersToInvestigate | Numbers for lookup
begin
# Requests info about phone numbers
result = api_instance.fetch_info(numbers_to_investigate)
p result
rescue MessenteApi::ApiError => e
puts "Error when calling NumberLookupApi->fetch_info: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> fetch_info_with_http_info(numbers_to_investigate)
begin
# Requests info about phone numbers
data, status_code, headers = api_instance.fetch_info_with_http_info(numbers_to_investigate)
p status_code # => 2xx
p headers # => { ... }
p data # => <SyncNumberLookupSuccess>
rescue MessenteApi::ApiError => e
puts "Error when calling NumberLookupApi->fetch_info_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
numbers_to_investigate | NumbersToInvestigate | Numbers for lookup |
- Content-Type: application/json
- Accept: application/json