Skip to content

Latest commit

 

History

History
76 lines (53 loc) · 2.01 KB

NumberLookupApi.md

File metadata and controls

76 lines (53 loc) · 2.01 KB

MessenteApi::NumberLookupApi

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

fetch_info(numbers_to_investigate)

Requests info about phone numbers

Examples

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

Using the fetch_info_with_http_info variant

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

Parameters

Name Type Description Notes
numbers_to_investigate NumbersToInvestigate Numbers for lookup

Return type

SyncNumberLookupSuccess

Authorization

basicAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json