Skip to content

Latest commit

 

History

History
1216 lines (1182 loc) · 120 KB

File metadata and controls

1216 lines (1182 loc) · 120 KB

zernio-sdk

Zernio - the Ruby gem for the Zernio API

API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api

This SDK is automatically generated by the OpenAPI Generator project:

  • API version: 1.0.1
  • Package version: 0.1.0
  • Generator version: 7.19.0
  • Build package: org.openapitools.codegen.languages.RubyClientCodegen For more information, please visit https://zernio.com

Installation

Install via RubyGems:

gem install zernio-sdk

Or add it to your Gemfile:

gem "zernio-sdk"

The legacy late-sdk gem is still published for backwards compatibility and exposes the same API (Late = Zernio).

Getting Started

Please follow the installation procedure and then run the following code:

# Load the gem
require 'zernio-sdk'

# Setup authorization
Zernio.configure do |config|
  # Configure Bearer authorization (JWT): bearerAuth
  config.access_token = 'YOUR_BEARER_TOKEN'
  # Configure a proc to get access tokens in lieu of the static access_token configuration
  config.access_token_getter = -> { 'YOUR TOKEN GETTER PROC' } 
end

api_instance = Zernio::APIKeysApi.new
create_api_key_request = Zernio::CreateApiKeyRequest.new({name: 'name_example'}) # CreateApiKeyRequest | 

begin
  #Create key
  result = api_instance.create_api_key(create_api_key_request)
  p result
rescue Zernio::ApiError => e
  puts "Exception when calling APIKeysApi->create_api_key: #{e}"
end

Documentation for API Endpoints

All URIs are relative to https://zernio.com/api

Class Method HTTP request Description
Zernio::APIKeysApi create_api_key POST /v1/api-keys Create key
Zernio::APIKeysApi delete_api_key DELETE /v1/api-keys/{keyId} Delete key
Zernio::APIKeysApi list_api_keys GET /v1/api-keys List keys
Zernio::AccountGroupsApi create_account_group POST /v1/account-groups Create group
Zernio::AccountGroupsApi delete_account_group DELETE /v1/account-groups/{groupId} Delete group
Zernio::AccountGroupsApi list_account_groups GET /v1/account-groups List groups
Zernio::AccountGroupsApi update_account_group PUT /v1/account-groups/{groupId} Update group
Zernio::AccountSettingsApi delete_instagram_ice_breakers DELETE /v1/accounts/{accountId}/instagram-ice-breakers Delete IG ice breakers
Zernio::AccountSettingsApi delete_messenger_menu DELETE /v1/accounts/{accountId}/messenger-menu Delete FB persistent menu
Zernio::AccountSettingsApi delete_telegram_commands DELETE /v1/accounts/{accountId}/telegram-commands Delete TG bot commands
Zernio::AccountSettingsApi get_instagram_ice_breakers GET /v1/accounts/{accountId}/instagram-ice-breakers Get IG ice breakers
Zernio::AccountSettingsApi get_messenger_menu GET /v1/accounts/{accountId}/messenger-menu Get FB persistent menu
Zernio::AccountSettingsApi get_telegram_commands GET /v1/accounts/{accountId}/telegram-commands Get TG bot commands
Zernio::AccountSettingsApi set_instagram_ice_breakers PUT /v1/accounts/{accountId}/instagram-ice-breakers Set IG ice breakers
Zernio::AccountSettingsApi set_messenger_menu PUT /v1/accounts/{accountId}/messenger-menu Set FB persistent menu
Zernio::AccountSettingsApi set_telegram_commands PUT /v1/accounts/{accountId}/telegram-commands Set TG bot commands
Zernio::AccountsApi delete_account DELETE /v1/accounts/{accountId} Disconnect account
Zernio::AccountsApi get_account_health GET /v1/accounts/{accountId}/health Check account health
Zernio::AccountsApi get_all_accounts_health GET /v1/accounts/health Check accounts health
Zernio::AccountsApi get_follower_stats GET /v1/accounts/follower-stats Get follower stats
Zernio::AccountsApi get_tik_tok_creator_info GET /v1/accounts/{accountId}/tiktok/creator-info Get TikTok creator info
Zernio::AccountsApi list_accounts GET /v1/accounts List accounts
Zernio::AccountsApi update_account PUT /v1/accounts/{accountId} Update account
Zernio::AdAudiencesApi add_users_to_ad_audience POST /v1/ads/audiences/{audienceId}/users Add users to audience
Zernio::AdAudiencesApi create_ad_audience POST /v1/ads/audiences Create custom audience
Zernio::AdAudiencesApi delete_ad_audience DELETE /v1/ads/audiences/{audienceId} Delete custom audience
Zernio::AdAudiencesApi get_ad_audience GET /v1/ads/audiences/{audienceId} Get audience details
Zernio::AdAudiencesApi list_ad_audiences GET /v1/ads/audiences List custom audiences
Zernio::AdCampaignsApi bulk_update_ad_campaign_status POST /v1/ads/campaigns/bulk-status Pause or resume many campaigns
Zernio::AdCampaignsApi delete_ad_campaign DELETE /v1/ads/campaigns/{campaignId} Delete a campaign
Zernio::AdCampaignsApi duplicate_ad_campaign POST /v1/ads/campaigns/{campaignId}/duplicate Duplicate a campaign
Zernio::AdCampaignsApi get_ad_tree GET /v1/ads/tree Get campaign tree
Zernio::AdCampaignsApi list_ad_campaigns GET /v1/ads/campaigns List campaigns
Zernio::AdCampaignsApi update_ad_campaign PUT /v1/ads/campaigns/{campaignId} Update a campaign (budget and/or bid strategy)
Zernio::AdCampaignsApi update_ad_campaign_status PUT /v1/ads/campaigns/{campaignId}/status Pause or resume a campaign
Zernio::AdCampaignsApi update_ad_set PUT /v1/ads/ad-sets/{adSetId} Update an ad set (budget, status, and/or bid strategy)
Zernio::AdCampaignsApi update_ad_set_status PUT /v1/ads/ad-sets/{adSetId}/status Pause or resume a single ad set
Zernio::AdsApi boost_post POST /v1/ads/boost Boost post as ad
Zernio::AdsApi create_ctwa_ad POST /v1/ads/ctwa Create Click-to-WhatsApp ad
Zernio::AdsApi create_standalone_ad POST /v1/ads/create Create standalone ad
Zernio::AdsApi delete_ad DELETE /v1/ads/{adId} Cancel an ad
Zernio::AdsApi get_ad GET /v1/ads/{adId} Get ad details
Zernio::AdsApi get_ad_analytics GET /v1/ads/{adId}/analytics Get ad analytics
Zernio::AdsApi get_ad_comments GET /v1/ads/{adId}/comments List comments on an ad
Zernio::AdsApi list_ad_accounts GET /v1/ads/accounts List ad accounts
Zernio::AdsApi list_ads GET /v1/ads List ads
Zernio::AdsApi list_ads_business_centers GET /v1/ads/business-centers List TikTok Business Centers
Zernio::AdsApi list_conversion_destinations GET /v1/accounts/{accountId}/conversion-destinations List destinations for the Conversions API
Zernio::AdsApi search_ad_interests GET /v1/ads/interests Search targeting interests
Zernio::AdsApi search_ad_targeting_locations GET /v1/ads/targeting/search Search geo targeting locations (Meta)
Zernio::AdsApi send_conversions POST /v1/ads/conversions Send conversion events to an ad platform
Zernio::AdsApi send_whats_app_conversion POST /v1/whatsapp/conversions Send WhatsApp conversion event
Zernio::AdsApi update_ad PUT /v1/ads/{adId} Update ad
Zernio::AnalyticsApi get_analytics GET /v1/analytics Get post analytics
Zernio::AnalyticsApi get_best_time_to_post GET /v1/analytics/best-time Get best times to post
Zernio::AnalyticsApi get_content_decay GET /v1/analytics/content-decay Get content performance decay
Zernio::AnalyticsApi get_daily_metrics GET /v1/analytics/daily-metrics Get daily aggregated metrics
Zernio::AnalyticsApi get_facebook_page_insights GET /v1/analytics/facebook/page-insights Get Facebook Page insights
Zernio::AnalyticsApi get_follower_stats GET /v1/accounts/follower-stats Get follower stats
Zernio::AnalyticsApi get_google_business_performance GET /v1/analytics/googlebusiness/performance Get GBP performance metrics
Zernio::AnalyticsApi get_google_business_search_keywords GET /v1/analytics/googlebusiness/search-keywords Get GBP search keywords
Zernio::AnalyticsApi get_instagram_account_insights GET /v1/analytics/instagram/account-insights Get Instagram insights
Zernio::AnalyticsApi get_instagram_demographics GET /v1/analytics/instagram/demographics Get Instagram demographics
Zernio::AnalyticsApi get_instagram_follower_history GET /v1/analytics/instagram/follower-history Get Instagram follower history
Zernio::AnalyticsApi get_linked_in_aggregate_analytics GET /v1/accounts/{accountId}/linkedin-aggregate-analytics Get LinkedIn aggregate stats
Zernio::AnalyticsApi get_linked_in_org_aggregate_analytics GET /v1/analytics/linkedin/org-aggregate-analytics Get LinkedIn organization page aggregate analytics
Zernio::AnalyticsApi get_linked_in_post_analytics GET /v1/accounts/{accountId}/linkedin-post-analytics Get LinkedIn post stats
Zernio::AnalyticsApi get_linked_in_post_reactions GET /v1/accounts/{accountId}/linkedin-post-reactions Get LinkedIn post reactions
Zernio::AnalyticsApi get_post_timeline GET /v1/analytics/post-timeline Get post analytics timeline
Zernio::AnalyticsApi get_posting_frequency GET /v1/analytics/posting-frequency Get frequency vs engagement
Zernio::AnalyticsApi get_tik_tok_account_insights GET /v1/analytics/tiktok/account-insights Get TikTok account-level insights
Zernio::AnalyticsApi get_you_tube_channel_insights GET /v1/analytics/youtube/channel-insights Get YouTube channel-level insights
Zernio::AnalyticsApi get_you_tube_daily_views GET /v1/analytics/youtube/daily-views Get YouTube daily views
Zernio::AnalyticsApi get_you_tube_demographics GET /v1/analytics/youtube/demographics Get YouTube demographics
Zernio::BroadcastsApi add_broadcast_recipients POST /v1/broadcasts/{broadcastId}/recipients Add recipients to a broadcast
Zernio::BroadcastsApi cancel_broadcast POST /v1/broadcasts/{broadcastId}/cancel Cancel broadcast
Zernio::BroadcastsApi create_broadcast POST /v1/broadcasts Create broadcast draft
Zernio::BroadcastsApi delete_broadcast DELETE /v1/broadcasts/{broadcastId} Delete broadcast
Zernio::BroadcastsApi get_broadcast GET /v1/broadcasts/{broadcastId} Get broadcast details
Zernio::BroadcastsApi list_broadcast_recipients GET /v1/broadcasts/{broadcastId}/recipients List broadcast recipients
Zernio::BroadcastsApi list_broadcasts GET /v1/broadcasts List broadcasts
Zernio::BroadcastsApi schedule_broadcast POST /v1/broadcasts/{broadcastId}/schedule Schedule broadcast for later
Zernio::BroadcastsApi send_broadcast POST /v1/broadcasts/{broadcastId}/send Send broadcast now
Zernio::BroadcastsApi update_broadcast PATCH /v1/broadcasts/{broadcastId} Update broadcast
Zernio::CommentAutomationsApi create_comment_automation POST /v1/comment-automations Create comment-to-DM automation
Zernio::CommentAutomationsApi delete_comment_automation DELETE /v1/comment-automations/{automationId} Delete automation
Zernio::CommentAutomationsApi get_comment_automation GET /v1/comment-automations/{automationId} Get automation details
Zernio::CommentAutomationsApi list_comment_automation_logs GET /v1/comment-automations/{automationId}/logs List automation logs
Zernio::CommentAutomationsApi list_comment_automations GET /v1/comment-automations List comment-to-DM automations
Zernio::CommentAutomationsApi update_comment_automation PATCH /v1/comment-automations/{automationId} Update automation settings
Zernio::CommentsApi delete_inbox_comment DELETE /v1/inbox/comments/{postId} Delete comment
Zernio::CommentsApi get_inbox_post_comments GET /v1/inbox/comments/{postId} Get post comments
Zernio::CommentsApi hide_inbox_comment POST /v1/inbox/comments/{postId}/{commentId}/hide Hide comment
Zernio::CommentsApi like_inbox_comment POST /v1/inbox/comments/{postId}/{commentId}/like Like comment
Zernio::CommentsApi list_inbox_comments GET /v1/inbox/comments List commented posts
Zernio::CommentsApi reply_to_inbox_post POST /v1/inbox/comments/{postId} Reply to comment
Zernio::CommentsApi send_private_reply_to_comment POST /v1/inbox/comments/{postId}/{commentId}/private-reply Send private reply
Zernio::CommentsApi unhide_inbox_comment DELETE /v1/inbox/comments/{postId}/{commentId}/hide Unhide comment
Zernio::CommentsApi unlike_inbox_comment DELETE /v1/inbox/comments/{postId}/{commentId}/like Unlike comment
Zernio::ConnectApi complete_telegram_connect PATCH /v1/connect/telegram Check Telegram status
Zernio::ConnectApi complete_whats_app_phone_selection POST /v1/connect/whatsapp/select-phone-number Complete WhatsApp phone number selection
Zernio::ConnectApi configure_tik_tok_ads_brand_identity PATCH /v1/connect/tiktok-ads Configure TikTok Ads Brand Identity
Zernio::ConnectApi connect_ads GET /v1/connect/{platform}/ads Connect ads for a platform
Zernio::ConnectApi connect_bluesky_credentials POST /v1/connect/bluesky/credentials Connect Bluesky account
Zernio::ConnectApi connect_whats_app_credentials POST /v1/connect/whatsapp/credentials Connect WhatsApp via credentials
Zernio::ConnectApi get_connect_url GET /v1/connect/{platform} Get OAuth connect URL
Zernio::ConnectApi get_facebook_pages GET /v1/accounts/{accountId}/facebook-page List Facebook pages
Zernio::ConnectApi get_gmb_locations GET /v1/accounts/{accountId}/gmb-locations List GBP locations
Zernio::ConnectApi get_linked_in_organizations GET /v1/accounts/{accountId}/linkedin-organizations List LinkedIn orgs
Zernio::ConnectApi get_pending_o_auth_data GET /v1/connect/pending-data Get pending OAuth data
Zernio::ConnectApi get_pinterest_boards GET /v1/accounts/{accountId}/pinterest-boards List Pinterest boards
Zernio::ConnectApi get_reddit_flairs GET /v1/accounts/{accountId}/reddit-flairs List subreddit flairs
Zernio::ConnectApi get_reddit_subreddits GET /v1/accounts/{accountId}/reddit-subreddits List Reddit subreddits
Zernio::ConnectApi get_telegram_connect_status GET /v1/connect/telegram Generate Telegram code
Zernio::ConnectApi get_youtube_playlists GET /v1/accounts/{accountId}/youtube-playlists List YouTube playlists
Zernio::ConnectApi handle_o_auth_callback POST /v1/connect/{platform} Complete OAuth callback
Zernio::ConnectApi initiate_telegram_connect POST /v1/connect/telegram Connect Telegram directly
Zernio::ConnectApi list_facebook_pages GET /v1/connect/facebook/select-page List Facebook pages
Zernio::ConnectApi list_google_business_locations GET /v1/connect/googlebusiness/locations List GBP locations
Zernio::ConnectApi list_linked_in_organizations GET /v1/connect/linkedin/organizations List LinkedIn orgs
Zernio::ConnectApi list_pinterest_boards_for_selection GET /v1/connect/pinterest/select-board List Pinterest boards
Zernio::ConnectApi list_snapchat_profiles GET /v1/connect/snapchat/select-profile List Snapchat profiles
Zernio::ConnectApi list_whats_app_phone_numbers GET /v1/connect/whatsapp/select-phone-number List WhatsApp phone numbers for selection
Zernio::ConnectApi select_facebook_page POST /v1/connect/facebook/select-page Select Facebook page
Zernio::ConnectApi select_google_business_location POST /v1/connect/googlebusiness/select-location Select GBP location
Zernio::ConnectApi select_linked_in_organization POST /v1/connect/linkedin/select-organization Select LinkedIn org
Zernio::ConnectApi select_pinterest_board POST /v1/connect/pinterest/select-board Select Pinterest board
Zernio::ConnectApi select_snapchat_profile POST /v1/connect/snapchat/select-profile Select Snapchat profile
Zernio::ConnectApi update_facebook_page PUT /v1/accounts/{accountId}/facebook-page Update Facebook page
Zernio::ConnectApi update_gmb_location PUT /v1/accounts/{accountId}/gmb-locations Update GBP location
Zernio::ConnectApi update_linked_in_organization PUT /v1/accounts/{accountId}/linkedin-organization Switch LinkedIn account type
Zernio::ConnectApi update_pinterest_boards PUT /v1/accounts/{accountId}/pinterest-boards Set default Pinterest board
Zernio::ConnectApi update_reddit_subreddits PUT /v1/accounts/{accountId}/reddit-subreddits Set default subreddit
Zernio::ConnectApi update_youtube_default_playlist PUT /v1/accounts/{accountId}/youtube-playlists Set default YouTube playlist
Zernio::ContactsApi bulk_create_contacts POST /v1/contacts/bulk Bulk create contacts
Zernio::ContactsApi create_contact POST /v1/contacts Create contact
Zernio::ContactsApi delete_contact DELETE /v1/contacts/{contactId} Delete contact
Zernio::ContactsApi get_contact GET /v1/contacts/{contactId} Get contact
Zernio::ContactsApi get_contact_channels GET /v1/contacts/{contactId}/channels List channels for a contact
Zernio::ContactsApi list_contacts GET /v1/contacts List contacts
Zernio::ContactsApi update_contact PATCH /v1/contacts/{contactId} Update contact
Zernio::CustomFieldsApi clear_contact_field_value DELETE /v1/contacts/{contactId}/fields/{slug} Clear custom field value
Zernio::CustomFieldsApi create_custom_field POST /v1/custom-fields Create custom field
Zernio::CustomFieldsApi delete_custom_field DELETE /v1/custom-fields/{fieldId} Delete custom field
Zernio::CustomFieldsApi list_custom_fields GET /v1/custom-fields List custom field definitions
Zernio::CustomFieldsApi set_contact_field_value PUT /v1/contacts/{contactId}/fields/{slug} Set custom field value
Zernio::CustomFieldsApi update_custom_field PATCH /v1/custom-fields/{fieldId} Update custom field
Zernio::DiscordApi get_discord_channels GET /v1/accounts/{accountId}/discord-channels List Discord guild channels
Zernio::DiscordApi get_discord_settings GET /v1/accounts/{accountId}/discord-settings Get Discord account settings
Zernio::DiscordApi update_discord_settings PATCH /v1/accounts/{accountId}/discord-settings Update Discord settings
Zernio::GMBAttributesApi get_google_business_attributes GET /v1/accounts/{accountId}/gmb-attributes Get attributes
Zernio::GMBAttributesApi update_google_business_attributes PUT /v1/accounts/{accountId}/gmb-attributes Update attributes
Zernio::GMBFoodMenusApi get_google_business_food_menus GET /v1/accounts/{accountId}/gmb-food-menus Get food menus
Zernio::GMBFoodMenusApi update_google_business_food_menus PUT /v1/accounts/{accountId}/gmb-food-menus Update food menus
Zernio::GMBLocationDetailsApi get_google_business_location_details GET /v1/accounts/{accountId}/gmb-location-details Get location details
Zernio::GMBLocationDetailsApi update_google_business_location_details PUT /v1/accounts/{accountId}/gmb-location-details Update location details
Zernio::GMBMediaApi create_google_business_media POST /v1/accounts/{accountId}/gmb-media Upload photo
Zernio::GMBMediaApi delete_google_business_media DELETE /v1/accounts/{accountId}/gmb-media Delete photo
Zernio::GMBMediaApi list_google_business_media GET /v1/accounts/{accountId}/gmb-media List media
Zernio::GMBPlaceActionsApi create_google_business_place_action POST /v1/accounts/{accountId}/gmb-place-actions Create action link
Zernio::GMBPlaceActionsApi delete_google_business_place_action DELETE /v1/accounts/{accountId}/gmb-place-actions Delete action link
Zernio::GMBPlaceActionsApi list_google_business_place_actions GET /v1/accounts/{accountId}/gmb-place-actions List action links
Zernio::GMBPlaceActionsApi update_google_business_place_action PATCH /v1/accounts/{accountId}/gmb-place-actions Update action link
Zernio::GMBReviewsApi batch_get_google_business_reviews POST /v1/accounts/{accountId}/gmb-reviews/batch Batch get reviews
Zernio::GMBReviewsApi get_google_business_reviews GET /v1/accounts/{accountId}/gmb-reviews Get reviews
Zernio::GMBServicesApi get_google_business_services GET /v1/accounts/{accountId}/gmb-services Get services
Zernio::GMBServicesApi update_google_business_services PUT /v1/accounts/{accountId}/gmb-services Replace services
Zernio::InvitesApi create_invite_token POST /v1/invite/tokens Create invite token
Zernio::LinkedInMentionsApi get_linked_in_mentions GET /v1/accounts/{accountId}/linkedin-mentions Resolve LinkedIn mention
Zernio::LogsApi list_logs GET /v1/logs List activity logs
Zernio::MediaApi get_media_presigned_url POST /v1/media/presign Get upload URL
Zernio::MessagesApi add_message_reaction POST /v1/inbox/conversations/{conversationId}/messages/{messageId}/reactions Add reaction
Zernio::MessagesApi create_inbox_conversation POST /v1/inbox/conversations Create conversation
Zernio::MessagesApi delete_inbox_message DELETE /v1/inbox/conversations/{conversationId}/messages/{messageId} Delete message
Zernio::MessagesApi edit_inbox_message PATCH /v1/inbox/conversations/{conversationId}/messages/{messageId} Edit message
Zernio::MessagesApi get_inbox_conversation GET /v1/inbox/conversations/{conversationId} Get conversation
Zernio::MessagesApi get_inbox_conversation_messages GET /v1/inbox/conversations/{conversationId}/messages List messages
Zernio::MessagesApi list_inbox_conversations GET /v1/inbox/conversations List conversations
Zernio::MessagesApi remove_message_reaction DELETE /v1/inbox/conversations/{conversationId}/messages/{messageId}/reactions Remove reaction
Zernio::MessagesApi send_inbox_message POST /v1/inbox/conversations/{conversationId}/messages Send message
Zernio::MessagesApi send_typing_indicator POST /v1/inbox/conversations/{conversationId}/typing Send typing indicator
Zernio::MessagesApi update_inbox_conversation PUT /v1/inbox/conversations/{conversationId} Update conversation status
Zernio::MessagesApi upload_media_direct POST /v1/media/upload-direct Upload media file
Zernio::PostsApi bulk_upload_posts POST /v1/posts/bulk-upload Bulk upload from CSV
Zernio::PostsApi create_post POST /v1/posts Create post
Zernio::PostsApi delete_post DELETE /v1/posts/{postId} Delete post
Zernio::PostsApi edit_post POST /v1/posts/{postId}/edit Edit published post
Zernio::PostsApi get_post GET /v1/posts/{postId} Get post
Zernio::PostsApi list_posts GET /v1/posts List posts
Zernio::PostsApi retry_post POST /v1/posts/{postId}/retry Retry failed post
Zernio::PostsApi unpublish_post POST /v1/posts/{postId}/unpublish Unpublish post
Zernio::PostsApi update_post PUT /v1/posts/{postId} Update post
Zernio::PostsApi update_post_metadata POST /v1/posts/{postId}/update-metadata Update post metadata
Zernio::ProfilesApi create_profile POST /v1/profiles Create profile
Zernio::ProfilesApi delete_profile DELETE /v1/profiles/{profileId} Delete profile
Zernio::ProfilesApi get_profile GET /v1/profiles/{profileId} Get profile
Zernio::ProfilesApi list_profiles GET /v1/profiles List profiles
Zernio::ProfilesApi update_profile PUT /v1/profiles/{profileId} Update profile
Zernio::QueueApi create_queue_slot POST /v1/queue/slots Create schedule
Zernio::QueueApi delete_queue_slot DELETE /v1/queue/slots Delete schedule
Zernio::QueueApi get_next_queue_slot GET /v1/queue/next-slot Get next available slot
Zernio::QueueApi list_queue_slots GET /v1/queue/slots List schedules
Zernio::QueueApi preview_queue GET /v1/queue/preview Preview upcoming slots
Zernio::QueueApi update_queue_slot PUT /v1/queue/slots Update schedule
Zernio::RedditSearchApi get_reddit_feed GET /v1/reddit/feed Get subreddit feed
Zernio::RedditSearchApi search_reddit GET /v1/reddit/search Search posts
Zernio::ReviewsApi delete_inbox_review_reply DELETE /v1/inbox/reviews/{reviewId}/reply Delete review reply
Zernio::ReviewsApi list_inbox_reviews GET /v1/inbox/reviews List reviews
Zernio::ReviewsApi reply_to_inbox_review POST /v1/inbox/reviews/{reviewId}/reply Reply to review
Zernio::SequencesApi activate_sequence POST /v1/sequences/{sequenceId}/activate Activate sequence
Zernio::SequencesApi create_sequence POST /v1/sequences Create sequence
Zernio::SequencesApi delete_sequence DELETE /v1/sequences/{sequenceId} Delete sequence
Zernio::SequencesApi enroll_contacts POST /v1/sequences/{sequenceId}/enroll Enroll contacts in a sequence
Zernio::SequencesApi get_sequence GET /v1/sequences/{sequenceId} Get sequence with steps
Zernio::SequencesApi list_sequence_enrollments GET /v1/sequences/{sequenceId}/enrollments List enrollments for a sequence
Zernio::SequencesApi list_sequences GET /v1/sequences List sequences
Zernio::SequencesApi pause_sequence POST /v1/sequences/{sequenceId}/pause Pause sequence
Zernio::SequencesApi unenroll_contact DELETE /v1/sequences/{sequenceId}/enroll/{contactId} Unenroll contact
Zernio::SequencesApi update_sequence PATCH /v1/sequences/{sequenceId} Update sequence
Zernio::TwitterEngagementApi bookmark_post POST /v1/twitter/bookmark Bookmark a tweet
Zernio::TwitterEngagementApi follow_user POST /v1/twitter/follow Follow a user
Zernio::TwitterEngagementApi remove_bookmark DELETE /v1/twitter/bookmark Remove bookmark
Zernio::TwitterEngagementApi retweet_post POST /v1/twitter/retweet Retweet a post
Zernio::TwitterEngagementApi undo_retweet DELETE /v1/twitter/retweet Undo retweet
Zernio::TwitterEngagementApi unfollow_user DELETE /v1/twitter/follow Unfollow a user
Zernio::UsageApi get_usage_stats GET /v1/usage-stats Get plan and usage stats
Zernio::UsageApi get_x_api_pricing GET /v1/billing/x-pricing Get X/Twitter API pricing table
Zernio::UsersApi get_user GET /v1/users/{userId} Get user
Zernio::UsersApi list_users GET /v1/users List users
Zernio::ValidateApi validate_media POST /v1/tools/validate/media Validate media URL
Zernio::ValidateApi validate_post POST /v1/tools/validate/post Validate post content
Zernio::ValidateApi validate_post_length POST /v1/tools/validate/post-length Validate character count
Zernio::ValidateApi validate_subreddit GET /v1/tools/validate/subreddit Check subreddit existence
Zernio::WebhooksApi create_webhook_settings POST /v1/webhooks/settings Create webhook
Zernio::WebhooksApi delete_webhook_settings DELETE /v1/webhooks/settings Delete webhook
Zernio::WebhooksApi get_webhook_settings GET /v1/webhooks/settings List webhooks
Zernio::WebhooksApi test_webhook POST /v1/webhooks/test Send test webhook
Zernio::WebhooksApi update_webhook_settings PUT /v1/webhooks/settings Update webhook
Zernio::WhatsAppApi add_whats_app_group_participants POST /v1/whatsapp/wa-groups/{groupId}/participants Add participants
Zernio::WhatsAppApi approve_whats_app_group_join_requests POST /v1/whatsapp/wa-groups/{groupId}/join-requests Approve join requests
Zernio::WhatsAppApi create_whats_app_group_chat POST /v1/whatsapp/wa-groups Create group
Zernio::WhatsAppApi create_whats_app_group_invite_link POST /v1/whatsapp/wa-groups/{groupId}/invite-link Create invite link
Zernio::WhatsAppApi create_whats_app_template POST /v1/whatsapp/templates Create template
Zernio::WhatsAppApi delete_whats_app_group_chat DELETE /v1/whatsapp/wa-groups/{groupId} Delete group
Zernio::WhatsAppApi delete_whats_app_template DELETE /v1/whatsapp/templates/{templateName} Delete template
Zernio::WhatsAppApi get_whats_app_business_profile GET /v1/whatsapp/business-profile Get business profile
Zernio::WhatsAppApi get_whats_app_display_name GET /v1/whatsapp/business-profile/display-name Get display name status
Zernio::WhatsAppApi get_whats_app_group_chat GET /v1/whatsapp/wa-groups/{groupId} Get group info
Zernio::WhatsAppApi get_whats_app_template GET /v1/whatsapp/templates/{templateName} Get template
Zernio::WhatsAppApi get_whats_app_templates GET /v1/whatsapp/templates List templates
Zernio::WhatsAppApi list_whats_app_group_chats GET /v1/whatsapp/wa-groups List active groups
Zernio::WhatsAppApi list_whats_app_group_join_requests GET /v1/whatsapp/wa-groups/{groupId}/join-requests List join requests
Zernio::WhatsAppApi reject_whats_app_group_join_requests DELETE /v1/whatsapp/wa-groups/{groupId}/join-requests Reject join requests
Zernio::WhatsAppApi remove_whats_app_group_participants DELETE /v1/whatsapp/wa-groups/{groupId}/participants Remove participants
Zernio::WhatsAppApi send_whats_app_conversion POST /v1/whatsapp/conversions Send WhatsApp conversion event
Zernio::WhatsAppApi update_whats_app_business_profile POST /v1/whatsapp/business-profile Update business profile
Zernio::WhatsAppApi update_whats_app_display_name POST /v1/whatsapp/business-profile/display-name Request display name change
Zernio::WhatsAppApi update_whats_app_group_chat POST /v1/whatsapp/wa-groups/{groupId} Update group settings
Zernio::WhatsAppApi update_whats_app_template PATCH /v1/whatsapp/templates/{templateName} Update template
Zernio::WhatsAppApi upload_whats_app_profile_photo POST /v1/whatsapp/business-profile/photo Upload profile picture
Zernio::WhatsAppFlowsApi create_whats_app_flow POST /v1/whatsapp/flows Create flow
Zernio::WhatsAppFlowsApi delete_whats_app_flow DELETE /v1/whatsapp/flows/{flowId} Delete flow
Zernio::WhatsAppFlowsApi deprecate_whats_app_flow POST /v1/whatsapp/flows/{flowId}/deprecate Deprecate flow
Zernio::WhatsAppFlowsApi get_whats_app_flow GET /v1/whatsapp/flows/{flowId} Get flow
Zernio::WhatsAppFlowsApi get_whats_app_flow_json GET /v1/whatsapp/flows/{flowId}/json Get flow JSON asset
Zernio::WhatsAppFlowsApi list_whats_app_flows GET /v1/whatsapp/flows List flows
Zernio::WhatsAppFlowsApi publish_whats_app_flow POST /v1/whatsapp/flows/{flowId}/publish Publish flow
Zernio::WhatsAppFlowsApi send_whats_app_flow_message POST /v1/whatsapp/flows/send Send flow message
Zernio::WhatsAppFlowsApi update_whats_app_flow PATCH /v1/whatsapp/flows/{flowId} Update flow
Zernio::WhatsAppFlowsApi upload_whats_app_flow_json PUT /v1/whatsapp/flows/{flowId}/json Upload flow JSON
Zernio::WhatsAppPhoneNumbersApi get_whats_app_phone_number GET /v1/whatsapp/phone-numbers/{phoneNumberId} Get phone number
Zernio::WhatsAppPhoneNumbersApi get_whats_app_phone_numbers GET /v1/whatsapp/phone-numbers List phone numbers
Zernio::WhatsAppPhoneNumbersApi purchase_whats_app_phone_number POST /v1/whatsapp/phone-numbers/purchase Purchase phone number
Zernio::WhatsAppPhoneNumbersApi release_whats_app_phone_number DELETE /v1/whatsapp/phone-numbers/{phoneNumberId} Release phone number

Documentation for Models

Documentation for Authorization

Authentication schemes defined for the API:

bearerAuth

  • Type: Bearer authentication (JWT)

connectToken

  • Type: API key
  • API key parameter name: X-Connect-Token
  • Location: HTTP header