Socket
Book a DemoInstallSign in
Socket

synctera_ruby_sdk

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

synctera_ruby_sdk

1.1.3
bundlerRubygems
Version published
Maintainers
1
Created
Source

synctera_ruby_sdk

Github Actions

SyncteraRubySdk - the Ruby gem for the Synctera API

Let's build something great.

Welcome to the official reference documentation for Synctera APIs. Our APIs are the best way to automate your company's banking needs and are designed to be easy to understand and implement.

We're continuously growing this library and what you see here is just the start, but if you need something specific or have a question, contact us.

This SDK is automatically generated by the OpenAPI Generator project:

  • API version: 0.60.0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.RubyClientCodegen

Installation

Build a gem

To build the Ruby code into a gem:

gem build synctera_ruby_sdk.gemspec

Then either install the gem locally:

gem install ./synctera_ruby_sdk-1.0.0.gem

(for development, run gem install --dev ./synctera_ruby_sdk-1.0.0.gem to install the development dependencies)

or publish the gem to a gem hosting service, e.g. RubyGems.

Finally add this to the Gemfile:

gem 'synctera_ruby_sdk'

Install from Git

If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:

gem 'synctera_ruby_sdk', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'

Include the Ruby code directly

Include the Ruby code directly using -I as follows:

ruby -Ilib script.rb

Getting Started

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

# Load the gem
require 'synctera_ruby_sdk'

# Setup authorization
SyncteraRubySdk.configure do |config|
  # Configure Bearer authorization (api_key): 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 = SyncteraRubySdk::ACHApi.new
outgoing_ach_request = SyncteraRubySdk::OutgoingAchRequest.new({amount: 607, currency: 'USD', customer_id: 'b01db9c7-78f2-4a99-8aca-1231d32f9b96', dc_sign: 'debit', originating_account_id: 'b01db9c7-78f2-4a99-8aca-1231d32f9b96', receiving_account_id: 'b01db9c7-78f2-4a99-8aca-1231d32f9b96'}) # OutgoingAchRequest | Send ACH request
opts = {
  idempotency_key: '7d943c51-e4ff-4e57-9558-08cab6b963c7' # String | An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry.
}

begin
  #Send an ACH
  result = api_instance.add_transaction_out(outgoing_ach_request, opts)
  p result
rescue SyncteraRubySdk::ApiError => e
  puts "Exception when calling ACHApi->add_transaction_out: #{e}"
end

Documentation for API Endpoints

All URIs are relative to https://api.synctera.com/v0

ClassMethodHTTP requestDescription
SyncteraRubySdk::ACHApiadd_transaction_outPOST /achSend an ACH
SyncteraRubySdk::ACHApiget_transaction_outGET /ach/{transaction_id}Get a sent ACH transaction
SyncteraRubySdk::ACHApilist_transactions_outGET /achList sent ACH transactions
SyncteraRubySdk::ACHApipatch_transaction_outPATCH /ach/{transaction_id}Update a sent ACH transaction
SyncteraRubySdk::ACHTransactionSimulationsApiach_return_simulationPOST /ach/transaction_simulations/receiving_returnSimulate receiving ACH return
SyncteraRubySdk::ACHTransactionSimulationsApiach_transaction_simulationPOST /ach/transaction_simulations/receiving_transactionSimulate receiving ACH transaction
SyncteraRubySdk::AccountsApicreate_accountPOST /accountsCreate an account
SyncteraRubySdk::AccountsApicreate_account_relationshipPOST /accounts/{account_id}/relationshipsCreate account relationship
SyncteraRubySdk::AccountsApicreate_account_resource_productPOST /accounts/productsCreate an account product
SyncteraRubySdk::AccountsApicreate_account_templatePOST /accounts/templatesCreate an account template
SyncteraRubySdk::AccountsApidelete_account_relationshipDELETE /accounts/{account_id}/relationships/{relationship_id}Delete account relationship
SyncteraRubySdk::AccountsApidelete_account_templateDELETE /accounts/templates/{template_id}Delete account template
SyncteraRubySdk::AccountsApiget_accountGET /accounts/{account_id}Get account
SyncteraRubySdk::AccountsApiget_account_relationshipGET /accounts/{account_id}/relationships/{relationship_id}Get account relationship
SyncteraRubySdk::AccountsApiget_account_templateGET /accounts/templates/{template_id}Get account template
SyncteraRubySdk::AccountsApilist_account_relationshipGET /accounts/{account_id}/relationshipsList account relationships
SyncteraRubySdk::AccountsApilist_account_resource_productsGET /accounts/productsList account products
SyncteraRubySdk::AccountsApilist_account_templatesGET /accounts/templatesList account templates
SyncteraRubySdk::AccountsApilist_accountsGET /accountsList accounts
SyncteraRubySdk::AccountsApipatch_accountPATCH /accounts/{account_id}Patch account
SyncteraRubySdk::AccountsApipatch_account_productPATCH /accounts/products/{product_id}Patch account product
SyncteraRubySdk::AccountsApiupdate_accountPUT /accounts/{account_id}Update account
SyncteraRubySdk::AccountsApiupdate_account_relationshipPUT /accounts/{account_id}/relationships/{relationship_id}Update account relationship
SyncteraRubySdk::AccountsApiupdate_account_templatePUT /accounts/templates/{template_id}Update account template
SyncteraRubySdk::BusinessesApicreate_businessPOST /businessesCreate a business
SyncteraRubySdk::BusinessesApiget_businessGET /businesses/{business_id}Get business
SyncteraRubySdk::BusinessesApilist_businessesGET /businessesList business
SyncteraRubySdk::BusinessesApiupdate_businessPATCH /businesses/{business_id}Patch business
SyncteraRubySdk::CardTransactionSimulationsApisimulate_authorizationPOST /cards/transaction_simulations/authorizationSimulate authorization
SyncteraRubySdk::CardTransactionSimulationsApisimulate_authorization_advicePOST /cards/transaction_simulations/authorization/adviceSimulate authorization advice
SyncteraRubySdk::CardTransactionSimulationsApisimulate_balance_inquiryPOST /cards/transaction_simulations/financial/balance_inquirySimulate balance inquiry
SyncteraRubySdk::CardTransactionSimulationsApisimulate_clearingPOST /cards/transaction_simulations/clearingSimulate clearing or refund
SyncteraRubySdk::CardTransactionSimulationsApisimulate_financialPOST /cards/transaction_simulations/financialSimulate financial
SyncteraRubySdk::CardTransactionSimulationsApisimulate_financial_advicePOST /cards/transaction_simulations/financial/adviceSimulate financial advice
SyncteraRubySdk::CardTransactionSimulationsApisimulate_original_creditPOST /cards/transaction_simulations/financial/original_creditSimulate OCT
SyncteraRubySdk::CardTransactionSimulationsApisimulate_reversalPOST /cards/transaction_simulations/reversalSimulate reversal
SyncteraRubySdk::CardTransactionSimulationsApisimulate_withdrawalPOST /cards/transaction_simulations/financial/withdrawalSimulate ATM withdrawal
SyncteraRubySdk::CardWebhookSimulationsApisimulate_card_fulfillment_eventPOST /cards/{card_id}/webhook_simulations/fulfillmentSimulate Card Fulfillment Event
SyncteraRubySdk::CardsApiactivate_cardPOST /cards/activateActivate a card
SyncteraRubySdk::CardsApicreate_card_imagePOST /cards/imagesCreate Card Image
SyncteraRubySdk::CardsApicreate_gatewayPOST /cards/gatewaysCreate Gateway
SyncteraRubySdk::CardsApiget_cardGET /cards/{card_id}Get Card
SyncteraRubySdk::CardsApiget_card_barcodeGET /cards/{card_id}/barcodesGet Card Barcode
SyncteraRubySdk::CardsApiget_card_image_dataGET /cards/images/{card_image_id}/dataGet Card Image Data
SyncteraRubySdk::CardsApiget_card_image_detailsGET /cards/images/{card_image_id}Get Card Image Details
SyncteraRubySdk::CardsApiget_card_widget_urlGET /cards/card_widget_urlGet card widget URL
SyncteraRubySdk::CardsApiget_client_access_tokenPOST /cards/{card_id}/client_tokenGet a client token
SyncteraRubySdk::CardsApiget_client_single_use_tokenPOST /cards/single_use_tokenGet single-use token
SyncteraRubySdk::CardsApiget_gatewayGET /cards/gateways/{gateway_id}Get Gateway
SyncteraRubySdk::CardsApiissue_cardPOST /cardsIssue a Card
SyncteraRubySdk::CardsApilist_card_image_detailsGET /cards/imagesList Card Image Details
SyncteraRubySdk::CardsApilist_card_productsGET /cards/productsList Card Products
SyncteraRubySdk::CardsApilist_cardsGET /cardsList Cards
SyncteraRubySdk::CardsApilist_changesGET /cards/{card_id}/changesList Card Changes
SyncteraRubySdk::CardsApilist_gatewaysGET /cards/gatewaysList Gateways
SyncteraRubySdk::CardsApiupdate_cardPATCH /cards/{card_id}Update Card
SyncteraRubySdk::CardsApiupdate_card_image_detailsPATCH /cards/images/{card_image_id}Update Card Image Details
SyncteraRubySdk::CardsApiupdate_gatewayPATCH /cards/gateways/{gateway_id}Update Gateway
SyncteraRubySdk::CardsApiupload_card_image_dataPOST /cards/images/{card_image_id}/dataUpload Card Image
SyncteraRubySdk::CashPickupsAlphaApicreate_cash_pickupPOST /cash_pickupsCreate a cash pickup
SyncteraRubySdk::CashPickupsAlphaApiget_cash_pickupGET /cash_pickups/{cash_pickup_id}Get a cash pickup
SyncteraRubySdk::CashPickupsAlphaApilist_cash_pickupsGET /cash_pickupsList cash pickups
SyncteraRubySdk::CashPickupsAlphaApipatch_cash_pickupPATCH /cash_pickups/{cash_pickup_id}Update a cash pickup
SyncteraRubySdk::CustomersApicreate_customerPOST /customersCreate a Customer
SyncteraRubySdk::CustomersApicreate_customer_employmentPOST /customers/{customer_id}/employmentCreate employment record
SyncteraRubySdk::CustomersApicreate_customer_risk_ratingPOST /customers/{customer_id}/risk_ratingsCreate customer risk rating
SyncteraRubySdk::CustomersApiget_all_customer_employmentGET /customers/{customer_id}/employmentList customer employment records
SyncteraRubySdk::CustomersApiget_all_customer_risk_ratingsGET /customers/{customer_id}/risk_ratingsList customer risk ratings
SyncteraRubySdk::CustomersApiget_customerGET /customers/{customer_id}Get Customer
SyncteraRubySdk::CustomersApiget_customer_risk_ratingGET /customers/{customer_id}/risk_ratings/{risk_rating_id}Get customer risk rating
SyncteraRubySdk::CustomersApiget_party_employmentGET /customers/{customer_id}/employment/{employment_id}Get customer employment record
SyncteraRubySdk::CustomersApilist_customersGET /customersList Customers
SyncteraRubySdk::CustomersApipatch_customerPATCH /customers/{customer_id}Patch Customer
SyncteraRubySdk::CustomersApiupdate_customerPUT /customers/{customer_id}Update Customer
SyncteraRubySdk::CustomersApiupdate_party_employmentPUT /customers/{customer_id}/employment/{employment_id}Update customer employment record
SyncteraRubySdk::DigitalWalletTokensApicreate_digital_wallet_applePOST /cards/{card_id}/digital_wallet_tokens/applepayCreate digital wallet token provision request for Apple Pay
SyncteraRubySdk::DigitalWalletTokensApicreate_digital_wallet_googlePOST /cards/{card_id}/digital_wallet_tokens/googlepayCreate digital wallet token provision request for Google Pay
SyncteraRubySdk::DigitalWalletTokensApiget_digital_wallet_tokenGET /cards/digital_wallet_tokens/{digital_wallet_token_id}Get Digital Wallet Token
SyncteraRubySdk::DigitalWalletTokensApilist_digital_wallet_tokensGET /cards/digital_wallet_tokensList Digital Wallet Tokens
SyncteraRubySdk::DigitalWalletTokensApiupdate_digital_wallet_token_statusPATCH /cards/digital_wallet_tokens/{digital_wallet_token_id}Update Digital Wallet Token's life cycle status
SyncteraRubySdk::DisclosuresApicreate_disclosurePOST /disclosuresCreate disclosure record
SyncteraRubySdk::DisclosuresApiget_disclosureGET /disclosures/{disclosure_id}Get disclosure
SyncteraRubySdk::DisclosuresApilist_disclosuresGET /disclosuresList disclosures
SyncteraRubySdk::DisclosuresDeprecatedApicreate_disclosure1POST /customers/{customer_id}/disclosuresCreate a Disclosure
SyncteraRubySdk::DisclosuresDeprecatedApilist_disclosures1GET /customers/{customer_id}/disclosuresList Disclosures
SyncteraRubySdk::DocumentsApicreate_documentPOST /documentsCreate a document
SyncteraRubySdk::DocumentsApicreate_document_versionPOST /documents/{document_id}/versionsCreate a new document version
SyncteraRubySdk::DocumentsApiget_documentGET /documents/{document_id}Get a document
SyncteraRubySdk::DocumentsApiget_document_contentsGET /documents/{document_id}/contentsGet contents of latest document version
SyncteraRubySdk::DocumentsApiget_document_versionGET /documents/{document_id}/versions/{document_version}Get a document by version
SyncteraRubySdk::DocumentsApiget_document_version_contentsGET /documents/{document_id}/versions/{document_version}/contentsGet document contents by version
SyncteraRubySdk::DocumentsApilist_documentsGET /documentsList documents
SyncteraRubySdk::DocumentsApiupdate_documentPATCH /documents/{document_id}Update a document
SyncteraRubySdk::ExternalAccountsApiadd_external_accountsPOST /external_accountsAdd an external account
SyncteraRubySdk::ExternalAccountsApiadd_vendor_external_accountsPOST /external_accounts/add_vendor_accountsAdd external accounts through a vendor, such as Plaid.
SyncteraRubySdk::ExternalAccountsApicreate_access_tokenPOST /external_accounts/access_tokensCreate a permanent access token for an external account
SyncteraRubySdk::ExternalAccountsApicreate_verification_link_tokenPOST /external_accounts/link_tokensCreate a link token to verify an external account
SyncteraRubySdk::ExternalAccountsApidelete_external_accountDELETE /external_accounts/{external_account_id}Delete an external account
SyncteraRubySdk::ExternalAccountsApiget_external_accountGET /external_accounts/{external_account_id}Get an external account
SyncteraRubySdk::ExternalAccountsApiget_external_account_balanceGET /external_accounts/{external_account_id}/balanceGet external account balances
SyncteraRubySdk::ExternalAccountsApiget_external_account_transactionsGET /external_accounts/{external_account_id}/transactionsList transactions of a given external account
SyncteraRubySdk::ExternalAccountsApilist_external_accountsGET /external_accountsList external accounts
SyncteraRubySdk::ExternalAccountsApisync_vendor_external_accountsPOST /external_accounts/sync_vendor_accountsSync external accounts through a vendor, such as Plaid.
SyncteraRubySdk::ExternalAccountsApiupdate_external_accountPATCH /external_accounts/{external_account_id}Patch an external account
SyncteraRubySdk::ExternalCardsApiauthenticate3_dsPOST /external_cards/authenticate_3dsAuthenticate 3DS (beta)
SyncteraRubySdk::ExternalCardsApicreate_external_card_from_tokenPOST /external_cards/tokensCreate External Card from token
SyncteraRubySdk::ExternalCardsApicreate_external_card_transferPOST /external_cards/transfersCreate External Card Transfer
SyncteraRubySdk::ExternalCardsApicreate_external_card_transfer_reversalPOST /external_cards/transfers/{transfer_id}/reversalsCreate External Card Transfer Reversal
SyncteraRubySdk::ExternalCardsApidelete_external_cardDELETE /external_cards/{external_card_id}Delete External Card
SyncteraRubySdk::ExternalCardsApiget_external_cardGET /external_cards/{external_card_id}Get External Card
SyncteraRubySdk::ExternalCardsApiget_external_card_transferGET /external_cards/transfers/{transfer_id}Get External Card Transfer
SyncteraRubySdk::ExternalCardsApiinitialize3_dsPOST /external_cards/initialize_3dsInitialize 3DS (beta)
SyncteraRubySdk::ExternalCardsApilist_external_card_transfersGET /external_cards/transfersList External Card Transfers
SyncteraRubySdk::ExternalCardsApilist_external_cardsGET /external_cardsList External Cards
SyncteraRubySdk::ExternalCardsApilookup3_dsPOST /external_cards/lookup_3dsLookup 3DS (beta)
SyncteraRubySdk::ExternalCardsApiupdate_external_cardPATCH /external_cards/{external_card_id}Update External Card
SyncteraRubySdk::IncomingWiresApiget_incoming_wireGET /wires/incoming/{wire_id}Get incoming wire by id
SyncteraRubySdk::InternalAccountsApiadd_internal_accountsPOST /internal_accountsAdd internal accounts
SyncteraRubySdk::InternalAccountsApiget_internal_accountsGET /internal_accounts/{internal_account_id}Get internal account by id
SyncteraRubySdk::InternalAccountsApilist_internal_accountsGET /internal_accountsList internal accounts
SyncteraRubySdk::InternalAccountsApipatch_internal_accountPATCH /internal_accounts/{internal_account_id}Patch internal account
SyncteraRubySdk::InternalTransferApicreate_internal_transferPOST /transactions/internal_transferCreate an internal transfer
SyncteraRubySdk::InternalTransferApiget_internal_transfer_by_idGET /transactions/internal_transfer/{id}Get an internal transfer
SyncteraRubySdk::InternalTransferApiupdate_internal_transfer_by_idPATCH /transactions/internal_transfer/{id}Update an internal transfer
SyncteraRubySdk::InternationalWiresAlphaApicreate_international_wirePOST /international_wiresCreate an International Wire
SyncteraRubySdk::InternationalWiresAlphaApiget_international_wireGET /international_wires/{wire_id}Get an international wire by id
SyncteraRubySdk::InternationalWiresAlphaApilist_international_wiresGET /international_wiresList International Wires
SyncteraRubySdk::InternationalWiresAlphaApipatch_international_wirePATCH /international_wires/{wire_id}Update an international wire to various statuses
SyncteraRubySdk::KYCKYBVerificationsApicreate_verificationPOST /verificationsCreate a verification
SyncteraRubySdk::KYCKYBVerificationsApiget_verification1GET /verifications/{verification_id}Get verification
SyncteraRubySdk::KYCKYBVerificationsApilist_verifications1GET /verificationsList verifications
SyncteraRubySdk::KYCKYBVerificationsApiverifyPOST /verifications/verifyVerify a customer's identity
SyncteraRubySdk::KYCKYBVerificationsApiverify_ad_hocPOST /verifications/adhocCheck if an individual is on any watchlists
SyncteraRubySdk::KYCVerificationDeprecatedApicreate_customer_verification_resultPOST /customers/{customer_id}/verificationsCreate a customer verification result
SyncteraRubySdk::KYCVerificationDeprecatedApiget_verificationGET /customers/{customer_id}/verifications/{verification_id}Get verification result
SyncteraRubySdk::KYCVerificationDeprecatedApilist_verificationsGET /customers/{customer_id}/verificationsList verification results
SyncteraRubySdk::KYCVerificationDeprecatedApiverify_customerPOST /customers/{customer_id}/verifyVerify a customer's identity
SyncteraRubySdk::LicensesApipatch_licensePATCH /licenses/{license_id}Patch License
SyncteraRubySdk::MonitoringApicreate_subscriptionPOST /monitoring/subscriptionsSubscribe a customer or business to monitoring
SyncteraRubySdk::MonitoringApidelete_subscriptionDELETE /monitoring/subscriptions/{subscription_id}Delete monitoring subscription
SyncteraRubySdk::MonitoringApiget_alertGET /monitoring/alerts/{alert_id}Retrieve a monitoring alert
SyncteraRubySdk::MonitoringApiget_subscriptionGET /monitoring/subscriptions/{subscription_id}Retrieve monitoring subscription
SyncteraRubySdk::MonitoringApilist_alertsGET /monitoring/alertsList monitoring alerts
SyncteraRubySdk::MonitoringApilist_subscriptionsGET /monitoring/subscriptionsList monitoring subscriptions
SyncteraRubySdk::MonitoringApiupdate_alertPATCH /monitoring/alerts/{alert_id}Update a monitoring alert
SyncteraRubySdk::NotesApicreate_notePOST /notesCreate a note
SyncteraRubySdk::NotesApilist_notesGET /notesList notes
SyncteraRubySdk::NotesApipatch_notePATCH /notes/{note_id}Patch Note
SyncteraRubySdk::PaymentSchedulesApicreate_payment_schedulePOST /payment_schedulesCreate a payment schedule
SyncteraRubySdk::PaymentSchedulesApilist_payment_schedulesGET /payment_schedulesList payment schedules
SyncteraRubySdk::PaymentSchedulesApilist_paymentsGET /payment_schedules/paymentsList payments
SyncteraRubySdk::PaymentSchedulesApipatch_payment_schedulePATCH /payment_schedules/{payment_schedule_id}Update a payment schedule
SyncteraRubySdk::PersonsApicreate_personPOST /personsCreate a person
SyncteraRubySdk::PersonsApicreate_personal_idPOST /persons/personal_idsCreate a personal identifier (beta)
SyncteraRubySdk::PersonsApidelete_personal_idDELETE /persons/personal_ids/{personal_id_id}Delete a personal identifier (beta)
SyncteraRubySdk::PersonsApiget_personGET /persons/{person_id}Get person
SyncteraRubySdk::PersonsApilist_personsGET /personsList persons
SyncteraRubySdk::PersonsApiupdate_personPATCH /persons/{person_id}Update person
SyncteraRubySdk::PersonsApiupdate_personal_idPATCH /persons/personal_ids/{personal_id_id}Update a personal identifier (beta)
SyncteraRubySdk::RelationshipsApicreate_relationshipPOST /relationshipsCreate a relationship
SyncteraRubySdk::RelationshipsApidelete_relationshipDELETE /relationships/{relationship_id}Delete relationship
SyncteraRubySdk::RelationshipsApiget_relationshipGET /relationships/{relationship_id}Get relationship
SyncteraRubySdk::RelationshipsApilist_relationshipsGET /relationshipsList relationships
SyncteraRubySdk::RelationshipsApiupdate_relationshipPATCH /relationships/{relationship_id}Update relationship
SyncteraRubySdk::RemoteCheckDepositBetaApicreate_rdc_depositPOST /rdc/depositsCreate a Remote Check Deposit
SyncteraRubySdk::RemoteCheckDepositBetaApiget_rdc_depositGET /rdc/deposits/{deposit_id}Get Remote Check Deposit
SyncteraRubySdk::RemoteCheckDepositBetaApilist_rdc_depositsGET /rdc/depositsList Remote Check Deposits
SyncteraRubySdk::SandboxWipeApiwipe_workspacePOST /wipeDelete data
SyncteraRubySdk::SpendControlsApicreate_spend_controlPOST /spend_controlsCreate Spend Control
SyncteraRubySdk::SpendControlsApiget_spend_controlGET /spend_controls/{spend_control_id}Get Spend Control
SyncteraRubySdk::SpendControlsApilist_spend_controlsGET /spend_controlsList Spend Controls
SyncteraRubySdk::SpendControlsApiupdate_spend_controlPATCH /spend_controls/{spend_control_id}Update Spend Control
SyncteraRubySdk::StatementsApiget_statementGET /statements/{statement_id}Get a statement
SyncteraRubySdk::StatementsApiget_statement_transactionsGET /statements/{statement_id}/transactionsGet a statement's transactions
SyncteraRubySdk::StatementsApilist_statementsGET /statementsList statements
SyncteraRubySdk::TransactionsApiget_pending_transaction_by_idGET /transactions/pending/{id}Get a pending transaction
SyncteraRubySdk::TransactionsApiget_posted_transaction_by_idGET /transactions/posted/{id}Get a posted transaction
SyncteraRubySdk::TransactionsApilist_pending_transactionsGET /transactions/pendingList pending transactions
SyncteraRubySdk::TransactionsApilist_posted_transactionsGET /transactions/postedList posted transactions
SyncteraRubySdk::WatchlistDeprecatedApiget_watchlist_alertGET /customers/{customer_id}/watchlists/alerts/{alert_id}Retrieve watchlist monitoring alert
SyncteraRubySdk::WatchlistDeprecatedApiget_watchlist_subscriptionGET /customers/{customer_id}/watchlists/subscriptions/{subscription_id}Retrieve watchlist monitoring subscription
SyncteraRubySdk::WatchlistDeprecatedApilist_watchlist_alertsGET /customers/{customer_id}/watchlists/alertsList watchlist monitoring alerts for a customer
SyncteraRubySdk::WatchlistDeprecatedApilist_watchlist_subscriptionsGET /customers/{customer_id}/watchlists/subscriptionsList watchlist monitoring subscriptions for a customer
SyncteraRubySdk::WatchlistDeprecatedApisuppress_watchlist_entity_alertPOST /customers/{customer_id}/watchlists/suppressionsSuppress entity alert
SyncteraRubySdk::WatchlistDeprecatedApiupdate_watchlist_alertPUT /customers/{customer_id}/watchlists/alerts/{alert_id}Update watchlist alert
SyncteraRubySdk::WatchlistDeprecatedApiupdate_watchlist_subscriptionPUT /customers/{customer_id}/watchlists/subscriptions/{subscription_id}Update watchlist monitoring subscription
SyncteraRubySdk::WatchlistDeprecatedApiwatchlist_subscribePOST /customers/{customer_id}/watchlists/subscriptionsSubscribe a customer to watchlist monitoring
SyncteraRubySdk::WebhooksApicreate_secretPOST /webhook_secretsCreate a secret
SyncteraRubySdk::WebhooksApicreate_webhookPOST /webhooksCreate a webhook
SyncteraRubySdk::WebhooksApidelete_webhookDELETE /webhooks/{webhook_id}Delete a webhook
SyncteraRubySdk::WebhooksApiget_eventGET /webhooks/{webhook_id}/events/{event_id}Get webhook event
SyncteraRubySdk::WebhooksApiget_webhookGET /webhooks/{webhook_id}Get a webhook
SyncteraRubySdk::WebhooksApilist_eventsGET /webhooks/{webhook_id}/eventsList webhook events
SyncteraRubySdk::WebhooksApilist_webhooksGET /webhooksList webhooks
SyncteraRubySdk::WebhooksApireplace_secretPUT /webhook_secretsReplace an existing secret
SyncteraRubySdk::WebhooksApiresend_eventPOST /webhooks/{webhook_id}/events/{event_id}/resendResend an event
SyncteraRubySdk::WebhooksApirevoke_secretDELETE /webhook_secretsRevoke the secret
SyncteraRubySdk::WebhooksApitrigger_eventPOST /webhooks/triggerTrigger an event
SyncteraRubySdk::WebhooksApiupdate_webhookPUT /webhooks/{webhook_id}Update a webhook
SyncteraRubySdk::WiresApicancel_wirePATCH /wires/{wire_id}Cancel an outgoing wire
SyncteraRubySdk::WiresApicreate_wirePOST /wiresSend a wire
SyncteraRubySdk::WiresApiget_wireGET /wires/{wire_id}Get a wire by id
SyncteraRubySdk::WiresApilist_wiresGET /wiresList wires

Documentation for Models

Documentation for Authorization

bearerAuth

  • Type: Bearer authentication (api_key)

FAQs

Package last updated on 22 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.