Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.

Latest commit

 

History

History
72 lines (48 loc) · 1.76 KB

File metadata and controls

72 lines (48 loc) · 1.76 KB

Cfchat::InboxAPIApi

All URIs are relative to https://chat.myclickfunnels.com

Method HTTP request Description
get_details_of_a_inbox GET /public/api/v1/inboxes/{inbox_identifier} Inbox details

get_details_of_a_inbox

get_details_of_a_inbox(inbox_identifier)

Inbox details

Get the details of an inbox

Examples

require 'time'
require 'cfchat'

api_instance = Cfchat::InboxAPIApi.new
inbox_identifier = 'inbox_identifier_example' # String | The identifier obtained from API inbox channel

begin
  # Inbox details
  result = api_instance.get_details_of_a_inbox(inbox_identifier)
  p result
rescue Cfchat::ApiError => e
  puts "Error when calling InboxAPIApi->get_details_of_a_inbox: #{e}"
end

Using the get_details_of_a_inbox_with_http_info variant

This returns an Array which contains the response data, status code and headers.

<Array(, Integer, Hash)> get_details_of_a_inbox_with_http_info(inbox_identifier)

begin
  # Inbox details
  data, status_code, headers = api_instance.get_details_of_a_inbox_with_http_info(inbox_identifier)
  p status_code # => 2xx
  p headers # => { ... }
  p data # => <PublicInbox>
rescue Cfchat::ApiError => e
  puts "Error when calling InboxAPIApi->get_details_of_a_inbox_with_http_info: #{e}"
end

Parameters

Name Type Description Notes
inbox_identifier String The identifier obtained from API inbox channel

Return type

PublicInbox

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json; charset=utf-8