Python Client SDK for Unified.to
Project description
Summary
Unified.to API: One API to Rule Them All
For more information about the API: API Documentation
Table of Contents
- SDK Installation
- IDE Support
- SDK Example Usage
- Available Resources and Operations
- File uploads
- Retries
- Error Handling
- Server Selection
- Custom HTTP Client
- Authentication
- Resource Management
- Debugging
SDK Installation
[!NOTE] Python version upgrade policy
Once a Python version reaches its official end of life date, a 3-month grace period is provided for users to upgrade. Following this grace period, the minimum python version supported in the SDK will be updated.
The SDK can be installed with uv, pip, or poetry package managers.
uv
uv is a fast Python package installer and resolver, designed as a drop-in replacement for pip and pip-tools. It's recommended for its speed and modern Python tooling capabilities.
uv add Unified-python-sdk
PIP
PIP is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
pip install Unified-python-sdk
Poetry
Poetry is a modern tool that simplifies dependency management and package publishing by using a single pyproject.toml file to handle project metadata and dependencies.
poetry add Unified-python-sdk
Shell and script usage with uv
You can use this SDK in a Python shell with uv and the uvx command that comes with it like so:
uvx --from Unified-python-sdk python
It's also possible to write a standalone Python script without needing to set up a whole project like so:
#!/usr/bin/env -S uv run --script
# /// script
# requires-python = ">=3.10"
# dependencies = [
# "Unified-python-sdk",
# ]
# ///
from unified_python_sdk import UnifiedTo
sdk = UnifiedTo(
# SDK arguments
)
# Rest of script here...
Once that is saved to a file, you can run it with uv run script.py where
script.py can be replaced with the actual file name.
IDE Support
PyCharm
Generally, the SDK will work well with most IDEs out of the box. However, when using PyCharm, you can enjoy much better integration with Pydantic by installing an additional plugin.
SDK Example Usage
Example
# Synchronous Example
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.accounting.create_accounting_account(request={
"accounting_account": {},
"connection_id": "<id>",
})
assert res.accounting_account is not None
# Handle response
print(res.accounting_account)
The same SDK client can also be used to make asynchronous requests by importing asyncio.
# Asynchronous Example
import asyncio
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
async def main():
async with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = await unified_to.accounting.create_accounting_account_async(request={
"accounting_account": {},
"connection_id": "<id>",
})
assert res.accounting_account is not None
# Handle response
print(res.accounting_account)
asyncio.run(main())
Available Resources and Operations
Available methods
Account
- create_accounting_account - Create an account
- get_accounting_account - Retrieve an account
- list_accounting_accounts - List all accounts
- patch_accounting_account - Update an account
- remove_accounting_account - Remove an account
- update_accounting_account - Update an account
Accounting
- create_accounting_account - Create an account
- create_accounting_bill - Create a bill
- create_accounting_category - Create a category
- create_accounting_contact - Create a contact
- create_accounting_creditmemo - Create a creditmemo
- create_accounting_expense - Create an expense
- create_accounting_invoice - Create an invoice
- create_accounting_journal - Create a journal
- create_accounting_order - Create an order
- create_accounting_purchaseorder - Create a purchaseorder
- create_accounting_salesorder - Create a salesorder
- create_accounting_taxrate - Create a taxrate
- create_accounting_transaction - Create a transaction
- get_accounting_account - Retrieve an account
- get_accounting_balancesheet - Retrieve a balancesheet
- get_accounting_bill - Retrieve a bill
- get_accounting_cashflow - Retrieve a cashflow
- get_accounting_category - Retrieve a category
- get_accounting_contact - Retrieve a contact
- get_accounting_creditmemo - Retrieve a creditmemo
- get_accounting_expense - Retrieve an expense
- get_accounting_invoice - Retrieve an invoice
- get_accounting_journal - Retrieve a journal
- get_accounting_order - Retrieve an order
- get_accounting_organization - Retrieve an organization
- get_accounting_profitloss - Retrieve a profitloss
- get_accounting_purchaseorder - Retrieve a purchaseorder
- get_accounting_report - Retrieve a report
- get_accounting_salesorder - Retrieve a salesorder
- get_accounting_taxrate - Retrieve a taxrate
- get_accounting_transaction - Retrieve a transaction
- get_accounting_trialbalance - Retrieve a trialbalance
- list_accounting_accounts - List all accounts
- list_accounting_balancesheets - List all balancesheets
- list_accounting_bills - List all bills
- list_accounting_cashflows - List all cashflows
- list_accounting_categories - List all categories
- list_accounting_contacts - List all contacts
- list_accounting_creditmemoes - List all creditmemoes
- list_accounting_expenses - List all expenses
- list_accounting_invoices - List all invoices
- list_accounting_journals - List all journals
- list_accounting_orders - List all orders
- list_accounting_organizations - List all organizations
- list_accounting_profitlosses - List all profitlosses
- list_accounting_purchaseorders - List all purchaseorders
- list_accounting_reports - List all reports
- list_accounting_salesorders - List all salesorders
- list_accounting_taxrates - List all taxrates
- list_accounting_transactions - List all transactions
- list_accounting_trialbalances - List all trialbalances
- patch_accounting_account - Update an account
- patch_accounting_bill - Update a bill
- patch_accounting_category - Update a category
- patch_accounting_contact - Update a contact
- patch_accounting_creditmemo - Update a creditmemo
- patch_accounting_expense - Update an expense
- patch_accounting_invoice - Update an invoice
- patch_accounting_journal - Update a journal
- patch_accounting_order - Update an order
- patch_accounting_purchaseorder - Update a purchaseorder
- patch_accounting_salesorder - Update a salesorder
- patch_accounting_taxrate - Update a taxrate
- patch_accounting_transaction - Update a transaction
- remove_accounting_account - Remove an account
- remove_accounting_bill - Remove a bill
- remove_accounting_category - Remove a category
- remove_accounting_contact - Remove a contact
- remove_accounting_creditmemo - Remove a creditmemo
- remove_accounting_expense - Remove an expense
- remove_accounting_invoice - Remove an invoice
- remove_accounting_journal - Remove a journal
- remove_accounting_order - Remove an order
- remove_accounting_purchaseorder - Remove a purchaseorder
- remove_accounting_salesorder - Remove a salesorder
- remove_accounting_taxrate - Remove a taxrate
- remove_accounting_transaction - Remove a transaction
- update_accounting_account - Update an account
- update_accounting_bill - Update a bill
- update_accounting_category - Update a category
- update_accounting_contact - Update a contact
- update_accounting_creditmemo - Update a creditmemo
- update_accounting_expense - Update an expense
- update_accounting_invoice - Update an invoice
- update_accounting_journal - Update a journal
- update_accounting_order - Update an order
- update_accounting_purchaseorder - Update a purchaseorder
- update_accounting_salesorder - Update a salesorder
- update_accounting_taxrate - Update a taxrate
- update_accounting_transaction - Update a transaction
Activity
- create_ats_activity - Create an activity
- create_lms_activity - Create an activity
- get_ats_activity - Retrieve an activity
- get_lms_activity - Retrieve an activity
- list_ats_activities - List all activities
- list_lms_activities - List all activities
- patch_ats_activity - Update an activity
- patch_lms_activity - Update an activity
- remove_ats_activity - Remove an activity
- remove_lms_activity - Remove an activity
- update_ats_activity - Update an activity
- update_lms_activity - Update an activity
Ad
- create_ads_ad - Create an ad
- get_ads_ad - Retrieve an ad
- list_ads_ads - List all ads
- patch_ads_ad - Update an ad
- remove_ads_ad - Remove an ad
- update_ads_ad - Update an ad
Ads
- create_ads_ad - Create an ad
- create_ads_campaign - Create a campaign
- create_ads_creative - Create a creative
- create_ads_group - Create a group
- create_ads_insertionorder - Create an insertionorder
- create_ads_organization - Create an organization
- get_ads_ad - Retrieve an ad
- get_ads_campaign - Retrieve a campaign
- get_ads_creative - Retrieve a creative
- get_ads_group - Retrieve a group
- get_ads_insertionorder - Retrieve an insertionorder
- get_ads_organization - Retrieve an organization
- list_ads_ads - List all ads
- list_ads_campaigns - List all campaigns
- list_ads_creatives - List all creatives
- list_ads_groups - List all groups
- list_ads_insertionorders - List all insertionorders
- list_ads_organizations - List all organizations
- list_ads_promoteds - List all promoteds
- list_ads_reports - List all reports
- list_ads_targets - List all targets
- patch_ads_ad - Update an ad
- patch_ads_campaign - Update a campaign
- patch_ads_creative - Update a creative
- patch_ads_group - Update a group
- patch_ads_insertionorder - Update an insertionorder
- patch_ads_organization - Update an organization
- remove_ads_ad - Remove an ad
- remove_ads_campaign - Remove a campaign
- remove_ads_creative - Remove a creative
- remove_ads_group - Remove a group
- remove_ads_insertionorder - Remove an insertionorder
- remove_ads_organization - Remove an organization
- update_ads_ad - Update an ad
- update_ads_campaign - Update a campaign
- update_ads_creative - Update a creative
- update_ads_group - Update a group
- update_ads_insertionorder - Update an insertionorder
- update_ads_organization - Update an organization
Apicall
- get_unified_apicall - Retrieve specific API Call by its ID
- list_unified_apicalls - Returns API Calls
Application
- create_ats_application - Create an application
- get_ats_application - Retrieve an application
- list_ats_applications - List all applications
- patch_ats_application - Update an application
- remove_ats_application - Remove an application
- update_ats_application - Update an application
Applicationstatus
- list_ats_applicationstatuses - List all applicationstatuses
Assessment
- create_assessment_package - Create an assessment package
- get_assessment_package - Get an assessment package
- list_assessment_packages - List assessment packages
- patch_assessment_order - Update an order
- patch_assessment_package - Update an assessment package
- remove_assessment_package - Delete an assessment package
- update_assessment_order - Update an order
- update_assessment_package - Update an assessment package
Ats
- create_ats_activity - Create an activity
- create_ats_application - Create an application
- create_ats_candidate - Create a candidate
- create_ats_company - Create a company
- create_ats_document - Create a document
- create_ats_interview - Create an interview
- create_ats_job - Create a job
- create_ats_scorecard - Create a scorecard
- get_ats_activity - Retrieve an activity
- get_ats_application - Retrieve an application
- get_ats_candidate - Retrieve a candidate
- get_ats_company - Retrieve a company
- get_ats_document - Retrieve a document
- get_ats_interview - Retrieve an interview
- get_ats_job - Retrieve a job
- get_ats_scorecard - Retrieve a scorecard
- list_ats_activities - List all activities
- list_ats_applications - List all applications
- list_ats_applicationstatuses - List all applicationstatuses
- list_ats_candidates - List all candidates
- list_ats_companies - List all companies
- list_ats_documents - List all documents
- list_ats_interviews - List all interviews
- list_ats_jobs - List all jobs
- list_ats_scorecards - List all scorecards
- patch_ats_activity - Update an activity
- patch_ats_application - Update an application
- patch_ats_candidate - Update a candidate
- patch_ats_company - Update a company
- patch_ats_document - Update a document
- patch_ats_interview - Update an interview
- patch_ats_job - Update a job
- patch_ats_scorecard - Update a scorecard
- remove_ats_activity - Remove an activity
- remove_ats_application - Remove an application
- remove_ats_candidate - Remove a candidate
- remove_ats_company - Remove a company
- remove_ats_document - Remove a document
- remove_ats_interview - Remove an interview
- remove_ats_job - Remove a job
- remove_ats_scorecard - Remove a scorecard
- update_ats_activity - Update an activity
- update_ats_application - Update an application
- update_ats_candidate - Update a candidate
- update_ats_company - Update a company
- update_ats_document - Update a document
- update_ats_interview - Update an interview
- update_ats_job - Update a job
- update_ats_scorecard - Update a scorecard
Auth
- get_unified_integration_auth - Authorize new connection
- get_unified_integration_login - Sign in a user
Availability
- list_commerce_availabilities - List all availabilities
Balancesheet
- get_accounting_balancesheet - Retrieve a balancesheet
- list_accounting_balancesheets - List all balancesheets
Bankaccount
- create_hris_bankaccount - Create a bankaccount
- get_hris_bankaccount - Retrieve a bankaccount
- list_hris_bankaccounts - List all bankaccounts
- patch_hris_bankaccount - Update a bankaccount
- remove_hris_bankaccount - Remove a bankaccount
- update_hris_bankaccount - Update a bankaccount
Benefit
- create_hris_benefit - Create a benefit
- get_hris_benefit - Retrieve a benefit
- list_hris_benefits - List all benefits
- patch_hris_benefit - Update a benefit
- remove_hris_benefit - Remove a benefit
- update_hris_benefit - Update a benefit
Bill
- create_accounting_bill - Create a bill
- get_accounting_bill - Retrieve a bill
- list_accounting_bills - List all bills
- patch_accounting_bill - Update a bill
- remove_accounting_bill - Remove a bill
- update_accounting_bill - Update a bill
Branch
- create_repo_branch - Create a branch
- get_repo_branch - Retrieve a branch
- list_repo_branches - List all branches
- patch_repo_branch - Update a branch
- remove_repo_branch - Remove a branch
- update_repo_branch - Update a branch
Busy
- list_calendar_busies - List all busies
Calendar
- create_calendar_calendar - Create a calendar
- create_calendar_event - Create an event
- create_calendar_link - Create a link
- create_calendar_webinar - Create a webinar
- get_calendar_calendar - Retrieve a calendar
- get_calendar_event - Retrieve an event
- get_calendar_link - Retrieve a link
- get_calendar_recording - Retrieve a recording
- get_calendar_webinar - Retrieve a webinar
- list_calendar_busies - List all busies
- list_calendar_calendars - List all calendars
- list_calendar_events - List all events
- list_calendar_links - List all links
- list_calendar_recordings - List all recordings
- list_calendar_webinars - List all webinars
- patch_calendar_calendar - Update a calendar
- patch_calendar_event - Update an event
- patch_calendar_link - Update a link
- patch_calendar_webinar - Update a webinar
- remove_calendar_calendar - Remove a calendar
- remove_calendar_event - Remove an event
- remove_calendar_link - Remove a link
- remove_calendar_webinar - Remove a webinar
- update_calendar_calendar - Update a calendar
- update_calendar_event - Update an event
- update_calendar_link - Update a link
- update_calendar_webinar - Update a webinar
Call
- get_uc_call - Retrieve a call
- list_uc_calls - List all calls
Campaign
- create_ads_campaign - Create a campaign
- create_martech_campaign - Create a campaign
- get_ads_campaign - Retrieve a campaign
- get_martech_campaign - Retrieve a campaign
- list_ads_campaigns - List all campaigns
- list_martech_campaigns - List all campaigns
- patch_ads_campaign - Update a campaign
- patch_martech_campaign - Update a campaign
- remove_ads_campaign - Remove a campaign
- remove_martech_campaign - Remove a campaign
- update_ads_campaign - Update a campaign
- update_martech_campaign - Update a campaign
Candidate
- create_ats_candidate - Create a candidate
- get_ats_candidate - Retrieve a candidate
- list_ats_candidates - List all candidates
- patch_ats_candidate - Update a candidate
- remove_ats_candidate - Remove a candidate
- update_ats_candidate - Update a candidate
Carrier
- get_shipping_carrier - Retrieve a carrier
- list_shipping_carriers - List all carriers
Cashflow
- get_accounting_cashflow - Retrieve a cashflow
- list_accounting_cashflows - List all cashflows
Category
- create_accounting_category - Create a category
- create_ticketing_category - Create a category
- get_accounting_category - Retrieve a category
- get_ticketing_category - Retrieve a category
- list_accounting_categories - List all categories
- list_ticketing_categories - List all categories
- patch_accounting_category - Update a category
- patch_ticketing_category - Update a category
- remove_accounting_category - Remove a category
- remove_ticketing_category - Remove a category
- update_accounting_category - Update a category
- update_ticketing_category - Update a category
Change
- get_task_change - Retrieve a change
- list_task_changes - List all changes
Channel
- get_messaging_channel - Retrieve a channel
- list_messaging_channels - List all channels
Class
- create_lms_class - Create a class
- get_lms_class - Retrieve a class
- list_lms_classes - List all classes
- patch_lms_class - Update a class
- remove_lms_class - Remove a class
- update_lms_class - Update a class
Collection
- create_commerce_collection - Create a collection
- create_lms_collection - Create a collection
- get_commerce_collection - Retrieve a collection
- get_lms_collection - Retrieve a collection
- list_commerce_collections - List all collections
- list_lms_collections - List all collections
- patch_commerce_collection - Update a collection
- patch_lms_collection - Update a collection
- remove_commerce_collection - Remove a collection
- remove_lms_collection - Remove a collection
- update_commerce_collection - Update a collection
- update_lms_collection - Update a collection
Comment
- create_kms_comment - Create a comment
- create_task_comment - Create a comment
- create_uc_comment - Create a comment
- get_kms_comment - Retrieve a comment
- get_task_comment - Retrieve a comment
- get_uc_comment - Retrieve a comment
- list_kms_comments - List all comments
- list_task_comments - List all comments
- list_uc_comments - List all comments
- patch_kms_comment - Update a comment
- patch_task_comment - Update a comment
- patch_uc_comment - Update a comment
- remove_kms_comment - Remove a comment
- remove_task_comment - Remove a comment
- remove_uc_comment - Remove a comment
- update_kms_comment - Update a comment
- update_task_comment - Update a comment
- update_uc_comment - Update a comment
Commerce
- create_commerce_collection - Create a collection
- create_commerce_inventory - Create an inventory
- create_commerce_item - Create an item
- create_commerce_itemvariant - Create an itemvariant
- create_commerce_location - Create a location
- create_commerce_reservation - Create a reservation
- create_commerce_review - Create a review
- create_commerce_saleschannel - Create a saleschannel
- get_commerce_collection - Retrieve a collection
- get_commerce_inventory - Retrieve an inventory
- get_commerce_item - Retrieve an item
- get_commerce_itemvariant - Retrieve an itemvariant
- get_commerce_location - Retrieve a location
- get_commerce_reservation - Retrieve a reservation
- get_commerce_review - Retrieve a review
- get_commerce_saleschannel - Retrieve a saleschannel
- list_commerce_availabilities - List all availabilities
- list_commerce_collections - List all collections
- list_commerce_inventories - List all inventories
- list_commerce_items - List all items
- list_commerce_itemvariants - List all itemvariants
- list_commerce_locations - List all locations
- list_commerce_reservations - List all reservations
- list_commerce_reviews - List all reviews
- list_commerce_saleschannels - List all saleschannels
- patch_commerce_collection - Update a collection
- patch_commerce_inventory - Update an inventory
- patch_commerce_item - Update an item
- patch_commerce_itemvariant - Update an itemvariant
- patch_commerce_location - Update a location
- patch_commerce_reservation - Update a reservation
- patch_commerce_review - Update a review
- patch_commerce_saleschannel - Update a saleschannel
- remove_commerce_collection - Remove a collection
- remove_commerce_inventory - Remove an inventory
- remove_commerce_item - Remove an item
- remove_commerce_itemvariant - Remove an itemvariant
- remove_commerce_location - Remove a location
- remove_commerce_reservation - Remove a reservation
- remove_commerce_review - Remove a review
- remove_commerce_saleschannel - Remove a saleschannel
- update_commerce_collection - Update a collection
- update_commerce_inventory - Update an inventory
- update_commerce_item - Update an item
- update_commerce_itemvariant - Update an itemvariant
- update_commerce_location - Update a location
- update_commerce_reservation - Update a reservation
- update_commerce_review - Update a review
- update_commerce_saleschannel - Update a saleschannel
Commit
- create_repo_commit - Create a commit
- get_repo_commit - Retrieve a commit
- list_repo_commits - List all commits
- patch_repo_commit - Update a commit
- remove_repo_commit - Remove a commit
- update_repo_commit - Update a commit
Company
- create_ats_company - Create a company
- create_crm_company - Create a company
- create_hris_company - Create a company
- get_ats_company - Retrieve a company
- get_crm_company - Retrieve a company
- get_hris_company - Retrieve a company
- list_ats_companies - List all companies
- list_crm_companies - List all companies
- list_enrich_companies - Retrieve enrichment information for a company
- list_hris_companies - List all companies
- patch_ats_company - Update a company
- patch_crm_company - Update a company
- patch_hris_company - Update a company
- remove_ats_company - Remove a company
- remove_crm_company - Remove a company
- remove_hris_company - Remove a company
- update_ats_company - Update a company
- update_crm_company - Update a company
- update_hris_company - Update a company
Connection
- create_unified_connection - Create connection
- get_unified_connection - Retrieve connection
- list_unified_connections - List all connections
- patch_unified_connection - Update connection
- remove_unified_connection - Remove connection
- update_unified_connection - Update connection
Contact
- create_accounting_contact - Create a contact
- create_crm_contact - Create a contact
- create_uc_contact - Create a contact
- get_accounting_contact - Retrieve a contact
- get_crm_contact - Retrieve a contact
- get_uc_contact - Retrieve a contact
- list_accounting_contacts - List all contacts
- list_crm_contacts - List all contacts
- list_uc_contacts - List all contacts
- patch_accounting_contact - Update a contact
- patch_crm_contact - Update a contact
- patch_uc_contact - Update a contact
- remove_accounting_contact - Remove a contact
- remove_crm_contact - Remove a contact
- remove_uc_contact - Remove a contact
- update_accounting_contact - Update a contact
- update_crm_contact - Update a contact
- update_uc_contact - Update a contact
Content
- create_lms_content - Create a content
- get_lms_content - Retrieve a content
- list_lms_contents - List all contents
- patch_lms_content - Update a content
- remove_lms_content - Remove a content
- update_lms_content - Update a content
Course
- create_lms_course - Create a course
- get_lms_course - Retrieve a course
- list_lms_courses - List all courses
- patch_lms_course - Update a course
- remove_lms_course - Remove a course
- update_lms_course - Update a course
Creative
- create_ads_creative - Create a creative
- get_ads_creative - Retrieve a creative
- list_ads_creatives - List all creatives
- patch_ads_creative - Update a creative
- remove_ads_creative - Remove a creative
- update_ads_creative - Update a creative
Creditmemo
- create_accounting_creditmemo - Create a creditmemo
- get_accounting_creditmemo - Retrieve a creditmemo
- list_accounting_creditmemoes - List all creditmemoes
- patch_accounting_creditmemo - Update a creditmemo
- remove_accounting_creditmemo - Remove a creditmemo
- update_accounting_creditmemo - Update a creditmemo
Crm
- create_crm_company - Create a company
- create_crm_contact - Create a contact
- create_crm_deal - Create a deal
- create_crm_event - Create an event
- create_crm_lead - Create a lead
- create_crm_pipeline - Create a pipeline
- get_crm_company - Retrieve a company
- get_crm_contact - Retrieve a contact
- get_crm_deal - Retrieve a deal
- get_crm_event - Retrieve an event
- get_crm_lead - Retrieve a lead
- get_crm_pipeline - Retrieve a pipeline
- list_crm_companies - List all companies
- list_crm_contacts - List all contacts
- list_crm_deals - List all deals
- list_crm_events - List all events
- list_crm_leads - List all leads
- list_crm_pipelines - List all pipelines
- patch_crm_company - Update a company
- patch_crm_contact - Update a contact
- patch_crm_deal - Update a deal
- patch_crm_event - Update an event
- patch_crm_lead - Update a lead
- patch_crm_pipeline - Update a pipeline
- remove_crm_company - Remove a company
- remove_crm_contact - Remove a contact
- remove_crm_deal - Remove a deal
- remove_crm_event - Remove an event
- remove_crm_lead - Remove a lead
- remove_crm_pipeline - Remove a pipeline
- update_crm_company - Update a company
- update_crm_contact - Update a contact
- update_crm_deal - Update a deal
- update_crm_event - Update an event
- update_crm_lead - Update a lead
- update_crm_pipeline - Update a pipeline
Customer
- create_ticketing_customer - Create a customer
- get_ticketing_customer - Retrieve a customer
- list_ticketing_customers - List all customers
- patch_ticketing_customer - Update a customer
- remove_ticketing_customer - Remove a customer
- update_ticketing_customer - Update a customer
Deal
- create_crm_deal - Create a deal
- get_crm_deal - Retrieve a deal
- list_crm_deals - List all deals
- patch_crm_deal - Update a deal
- remove_crm_deal - Remove a deal
- update_crm_deal - Update a deal
Deduction
- create_hris_deduction - Create a deduction
- get_hris_deduction - Retrieve a deduction
- list_hris_deductions - List all deductions
- patch_hris_deduction - Update a deduction
- remove_hris_deduction - Remove a deduction
- update_hris_deduction - Update a deduction
Device
- create_hris_device - Create a device
- get_hris_device - Retrieve a device
- list_hris_devices - List all devices
- patch_hris_device - Update a device
- remove_hris_device - Remove a device
- update_hris_device - Update a device
Document
- create_ats_document - Create a document
- get_ats_document - Retrieve a document
- list_ats_documents - List all documents
- patch_ats_document - Update a document
- remove_ats_document - Remove a document
- update_ats_document - Update a document
Embedding
- create_genai_embedding - Create an embedding
Employee
- create_hris_employee - Create an employee
- get_hris_employee - Retrieve an employee
- list_hris_employees - List all employees
- patch_hris_employee - Update an employee
- remove_hris_employee - Remove an employee
- update_hris_employee - Update an employee
Enrich
- list_enrich_companies - Retrieve enrichment information for a company
- list_enrich_people - Retrieve enrichment information for a person
Environment
- create_unified_environment - Create new environments
- list_unified_environments - Returns all environments
- remove_unified_environment - Remove an environment
Event
- create_calendar_event - Create an event
- create_crm_event - Create an event
- get_calendar_event - Retrieve an event
- get_crm_event - Retrieve an event
- list_calendar_events - List all events
- list_crm_events - List all events
- patch_calendar_event - Update an event
- patch_crm_event - Update an event
- patch_messaging_event - Update an event
- remove_calendar_event - Remove an event
- remove_crm_event - Remove an event
- update_calendar_event - Update an event
- update_crm_event - Update an event
- update_messaging_event - Update an event
Expense
- create_accounting_expense - Create an expense
- get_accounting_expense - Retrieve an expense
- list_accounting_expenses - List all expenses
- patch_accounting_expense - Update an expense
- remove_accounting_expense - Remove an expense
- update_accounting_expense - Update an expense
File
- create_storage_file - Create a file
- get_storage_file - Retrieve a file
- list_storage_files - List all files
- patch_storage_file - Update a file
- remove_storage_file - Remove a file
- update_storage_file - Update a file
Form
- create_forms_form - Create a form
- get_forms_form - Retrieve a form
- list_forms_forms - List all forms
- patch_forms_form - Update a form
- remove_forms_form - Remove a form
- update_forms_form - Update a form
Forms
- create_forms_form - Create a form
- get_forms_form - Retrieve a form
- get_forms_submission - Retrieve a submission
- list_forms_forms - List all forms
- list_forms_submissions - List all submissions
- patch_forms_form - Update a form
- remove_forms_form - Remove a form
- update_forms_form - Update a form
Genai
- create_genai_embedding - Create an embedding
- create_genai_prompt - Create a prompt
- get_genai_model - Retrieve a model
- list_genai_models - List all models
Group
- create_ads_group - Create a group
- create_hris_group - Create a group
- create_scim_groups - Create group
- get_ads_group - Retrieve a group
- get_hris_group - Retrieve a group
- get_scim_groups - Get group
- list_ads_groups - List all groups
- list_hris_groups - List all groups
- list_scim_groups - List groups
- patch_ads_group - Update a group
- patch_hris_group - Update a group
- patch_scim_groups - Update group
- remove_ads_group - Remove a group
- remove_hris_group - Remove a group
- remove_scim_groups - Delete group
- update_ads_group - Update a group
- update_hris_group - Update a group
- update_scim_groups - Update group
Hris
- create_hris_bankaccount - Create a bankaccount
- create_hris_benefit - Create a benefit
- create_hris_company - Create a company
- create_hris_deduction - Create a deduction
- create_hris_device - Create a device
- create_hris_employee - Create an employee
- create_hris_group - Create a group
- create_hris_location - Create a location
- create_hris_timeoff - Create a timeoff
- create_hris_timeshift - Create a timeshift
- get_hris_bankaccount - Retrieve a bankaccount
- get_hris_benefit - Retrieve a benefit
- get_hris_company - Retrieve a company
- get_hris_deduction - Retrieve a deduction
- get_hris_device - Retrieve a device
- get_hris_employee - Retrieve an employee
- get_hris_group - Retrieve a group
- get_hris_location - Retrieve a location
- get_hris_payslip - Retrieve a payslip
- get_hris_timeoff - Retrieve a timeoff
- get_hris_timeshift - Retrieve a timeshift
- list_hris_bankaccounts - List all bankaccounts
- list_hris_benefits - List all benefits
- list_hris_companies - List all companies
- list_hris_deductions - List all deductions
- list_hris_devices - List all devices
- list_hris_employees - List all employees
- list_hris_groups - List all groups
- list_hris_locations - List all locations
- list_hris_payslips - List all payslips
- list_hris_timeoffs - List all timeoffs
- list_hris_timeshifts - List all timeshifts
- patch_hris_bankaccount - Update a bankaccount
- patch_hris_benefit - Update a benefit
- patch_hris_company - Update a company
- patch_hris_deduction - Update a deduction
- patch_hris_device - Update a device
- patch_hris_employee - Update an employee
- patch_hris_group - Update a group
- patch_hris_location - Update a location
- patch_hris_timeoff - Update a timeoff
- patch_hris_timeshift - Update a timeshift
- remove_hris_bankaccount - Remove a bankaccount
- remove_hris_benefit - Remove a benefit
- remove_hris_company - Remove a company
- remove_hris_deduction - Remove a deduction
- remove_hris_device - Remove a device
- remove_hris_employee - Remove an employee
- remove_hris_group - Remove a group
- remove_hris_location - Remove a location
- remove_hris_timeoff - Remove a timeoff
- remove_hris_timeshift - Remove a timeshift
- update_hris_bankaccount - Update a bankaccount
- update_hris_benefit - Update a benefit
- update_hris_company - Update a company
- update_hris_deduction - Update a deduction
- update_hris_device - Update a device
- update_hris_employee - Update an employee
- update_hris_group - Update a group
- update_hris_location - Update a location
- update_hris_timeoff - Update a timeoff
- update_hris_timeshift - Update a timeshift
Insertionorder
- create_ads_insertionorder - Create an insertionorder
- get_ads_insertionorder - Retrieve an insertionorder
- list_ads_insertionorders - List all insertionorders
- patch_ads_insertionorder - Update an insertionorder
- remove_ads_insertionorder - Remove an insertionorder
- update_ads_insertionorder - Update an insertionorder
Instructor
- create_lms_instructor - Create an instructor
- get_lms_instructor - Retrieve an instructor
- list_lms_instructors - List all instructors
- patch_lms_instructor - Update an instructor
- remove_lms_instructor - Remove an instructor
- update_lms_instructor - Update an instructor
Integration
- get_unified_integration_auth - Authorize new connection
- list_unified_integration_workspaces - Returns all activated integrations in a workspace
- list_unified_integrations - Returns all integrations
Interview
- create_ats_interview - Create an interview
- get_ats_interview - Retrieve an interview
- list_ats_interviews - List all interviews
- patch_ats_interview - Update an interview
- remove_ats_interview - Remove an interview
- update_ats_interview - Update an interview
Inventory
- create_commerce_inventory - Create an inventory
- get_commerce_inventory - Retrieve an inventory
- list_commerce_inventories - List all inventories
- patch_commerce_inventory - Update an inventory
- remove_commerce_inventory - Remove an inventory
- update_commerce_inventory - Update an inventory
Invoice
- create_accounting_invoice - Create an invoice
- get_accounting_invoice - Retrieve an invoice
- list_accounting_invoices - List all invoices
- patch_accounting_invoice - Update an invoice
- remove_accounting_invoice - Remove an invoice
- update_accounting_invoice - Update an invoice
Issue
- get_unified_issue - Retrieve support issue
- list_unified_issues - List support issues
Item
- create_commerce_item - Create an item
- get_commerce_item - Retrieve an item
- list_commerce_items - List all items
- patch_commerce_item - Update an item
- remove_commerce_item - Remove an item
- update_commerce_item - Update an item
Itemvariant
- create_commerce_itemvariant - Create an itemvariant
- get_commerce_itemvariant - Retrieve an itemvariant
- list_commerce_itemvariants - List all itemvariants
- patch_commerce_itemvariant - Update an itemvariant
- remove_commerce_itemvariant - Remove an itemvariant
- update_commerce_itemvariant - Update an itemvariant
Job
- create_ats_job - Create a job
- get_ats_job - Retrieve a job
- list_ats_jobs - List all jobs
- patch_ats_job - Update a job
- remove_ats_job - Remove a job
- update_ats_job - Update a job
Journal
- create_accounting_journal - Create a journal
- get_accounting_journal - Retrieve a journal
- list_accounting_journals - List all journals
- patch_accounting_journal - Update a journal
- remove_accounting_journal - Remove a journal
- update_accounting_journal - Update a journal
Kms
- create_kms_comment - Create a comment
- create_kms_page - Create a page
- create_kms_space - Create a space
- get_kms_comment - Retrieve a comment
- get_kms_page - Retrieve a page
- get_kms_space - Retrieve a space
- list_kms_comments - List all comments
- list_kms_pages - List all pages
- list_kms_spaces - List all spaces
- patch_kms_comment - Update a comment
- patch_kms_page - Update a page
- patch_kms_space - Update a space
- remove_kms_comment - Remove a comment
- remove_kms_page - Remove a page
- remove_kms_space - Remove a space
- update_kms_comment - Update a comment
- update_kms_page - Update a page
- update_kms_space - Update a space
Label
- create_shipping_label - Create a label
- get_shipping_label - Retrieve a label
- list_shipping_labels - List all labels
- patch_shipping_label - Update a label
- remove_shipping_label - Remove a label
- update_shipping_label - Update a label
Lead
- create_crm_lead - Create a lead
- get_crm_lead - Retrieve a lead
- list_crm_leads - List all leads
- patch_crm_lead - Update a lead
- remove_crm_lead - Remove a lead
- update_crm_lead - Update a lead
Link
- create_calendar_link - Create a link
- create_payment_link - Create a link
- get_calendar_link - Retrieve a link
- get_payment_link - Retrieve a link
- list_calendar_links - List all links
- list_payment_links - List all links
- patch_calendar_link - Update a link
- patch_payment_link - Update a link
- remove_calendar_link - Remove a link
- remove_payment_link - Remove a link
- update_calendar_link - Update a link
- update_payment_link - Update a link
List
- create_martech_list - Create a list
- get_martech_list - Retrieve a list
- list_martech_lists - List all lists
- patch_martech_list - Update a list
- remove_martech_list - Remove a list
- update_martech_list - Update a list
Lms
- create_lms_activity - Create an activity
- create_lms_class - Create a class
- create_lms_collection - Create a collection
- create_lms_content - Create a content
- create_lms_course - Create a course
- create_lms_instructor - Create an instructor
- create_lms_student - Create a student
- get_lms_activity - Retrieve an activity
- get_lms_class - Retrieve a class
- get_lms_collection - Retrieve a collection
- get_lms_content - Retrieve a content
- get_lms_course - Retrieve a course
- get_lms_instructor - Retrieve an instructor
- get_lms_student - Retrieve a student
- list_lms_activities - List all activities
- list_lms_classes - List all classes
- list_lms_collections - List all collections
- list_lms_contents - List all contents
- list_lms_courses - List all courses
- list_lms_instructors - List all instructors
- list_lms_students - List all students
- patch_lms_activity - Update an activity
- patch_lms_class - Update a class
- patch_lms_collection - Update a collection
- patch_lms_content - Update a content
- patch_lms_course - Update a course
- patch_lms_instructor - Update an instructor
- patch_lms_student - Update a student
- remove_lms_activity - Remove an activity
- remove_lms_class - Remove a class
- remove_lms_collection - Remove a collection
- remove_lms_content - Remove a content
- remove_lms_course - Remove a course
- remove_lms_instructor - Remove an instructor
- remove_lms_student - Remove a student
- update_lms_activity - Update an activity
- update_lms_class - Update a class
- update_lms_collection - Update a collection
- update_lms_content - Update a content
- update_lms_course - Update a course
- update_lms_instructor - Update an instructor
- update_lms_student - Update a student
Location
- create_commerce_location - Create a location
- create_hris_location - Create a location
- get_commerce_location - Retrieve a location
- get_hris_location - Retrieve a location
- list_commerce_locations - List all locations
- list_hris_locations - List all locations
- patch_commerce_location - Update a location
- patch_hris_location - Update a location
- remove_commerce_location - Remove a location
- remove_hris_location - Remove a location
- update_commerce_location - Update a location
- update_hris_location - Update a location
Login
- get_unified_integration_login - Sign in a user
Martech
- create_martech_campaign - Create a campaign
- create_martech_list - Create a list
- create_martech_member - Create a member
- get_martech_campaign - Retrieve a campaign
- get_martech_list - Retrieve a list
- get_martech_member - Retrieve a member
- list_martech_campaigns - List all campaigns
- list_martech_lists - List all lists
- list_martech_members - List all members
- list_martech_reports - List all reports
- patch_martech_campaign - Update a campaign
- patch_martech_list - Update a list
- patch_martech_member - Update a member
- remove_martech_campaign - Remove a campaign
- remove_martech_list - Remove a list
- remove_martech_member - Remove a member
- update_martech_campaign - Update a campaign
- update_martech_list - Update a list
- update_martech_member - Update a member
Member
- create_martech_member - Create a member
- get_martech_member - Retrieve a member
- list_martech_members - List all members
- patch_martech_member - Update a member
- remove_martech_member - Remove a member
- update_martech_member - Update a member
Message
- create_messaging_message - Create a message
- get_messaging_message - Retrieve a message
- list_messaging_messages - List all messages
- patch_messaging_message - Update a message
- remove_messaging_message - Remove a message
- update_messaging_message - Update a message
Messaging
- create_messaging_message - Create a message
- get_messaging_channel - Retrieve a channel
- get_messaging_message - Retrieve a message
- list_messaging_channels - List all channels
- list_messaging_messages - List all messages
- patch_messaging_event - Update an event
- patch_messaging_message - Update a message
- remove_messaging_message - Remove a message
- update_messaging_event - Update an event
- update_messaging_message - Update a message
Metadata
- create_metadata_metadata - Create a metadata
- get_metadata_metadata - Retrieve a metadata
- list_metadata_metadatas - List all metadatas
- patch_metadata_metadata - Update a metadata
- remove_metadata_metadata - Remove a metadata
- update_metadata_metadata - Update a metadata
Model
- get_genai_model - Retrieve a model
- list_genai_models - List all models
Note
- create_ticketing_note - Create a note
- get_ticketing_note - Retrieve a note
- list_ticketing_notes - List all notes
- patch_ticketing_note - Update a note
- remove_ticketing_note - Remove a note
- update_ticketing_note - Update a note
Order
- create_accounting_order - Create an order
- get_accounting_order - Retrieve an order
- list_accounting_orders - List all orders
- patch_accounting_order - Update an order
- patch_assessment_order - Update an order
- remove_accounting_order - Remove an order
- update_accounting_order - Update an order
- update_assessment_order - Update an order
Organization
- create_ads_organization - Create an organization
- create_repo_organization - Create an organization
- get_accounting_organization - Retrieve an organization
- get_ads_organization - Retrieve an organization
- get_repo_organization - Retrieve an organization
- list_accounting_organizations - List all organizations
- list_ads_organizations - List all organizations
- list_repo_organizations - List all organizations
- patch_ads_organization - Update an organization
- patch_repo_organization - Update an organization
- remove_ads_organization - Remove an organization
- remove_repo_organization - Remove an organization
- update_ads_organization - Update an organization
- update_repo_organization - Update an organization
Package
- create_assessment_package - Create an assessment package
- get_assessment_package - Get an assessment package
- get_verification_package - Retrieve a package
- list_assessment_packages - List assessment packages
- list_verification_packages - List all packages
- patch_assessment_package - Update an assessment package
- remove_assessment_package - Delete an assessment package
- update_assessment_package - Update an assessment package
Page
- create_kms_page - Create a page
- get_kms_page - Retrieve a page
- list_kms_pages - List all pages
- patch_kms_page - Update a page
- remove_kms_page - Remove a page
- update_kms_page - Update a page
Passthrough
- create_passthrough_json - Passthrough POST
- create_passthrough_raw - Passthrough POST
- list_passthroughs - Passthrough GET
- patch_passthrough_json - Passthrough PUT
- patch_passthrough_raw - Passthrough PUT
- remove_passthrough - Passthrough DELETE
- update_passthrough_json - Passthrough PUT
- update_passthrough_raw - Passthrough PUT
Payment
- create_payment_link - Create a link
- create_payment_payment - Create a payment
- create_payment_subscription - Create a subscription
- get_payment_link - Retrieve a link
- get_payment_payment - Retrieve a payment
- get_payment_payout - Retrieve a payout
- get_payment_refund - Retrieve a refund
- get_payment_subscription - Retrieve a subscription
- list_payment_links - List all links
- list_payment_payments - List all payments
- list_payment_payouts - List all payouts
- list_payment_refunds - List all refunds
- list_payment_subscriptions - List all subscriptions
- patch_payment_link - Update a link
- patch_payment_payment - Update a payment
- patch_payment_subscription - Update a subscription
- remove_payment_link - Remove a link
- remove_payment_payment - Remove a payment
- remove_payment_subscription - Remove a subscription
- update_payment_link - Update a link
- update_payment_payment - Update a payment
- update_payment_subscription - Update a subscription
Payout
- get_payment_payout - Retrieve a payout
- list_payment_payouts - List all payouts
Payslip
- get_hris_payslip - Retrieve a payslip
- list_hris_payslips - List all payslips
Person
- list_enrich_people - Retrieve enrichment information for a person
Pipeline
- create_crm_pipeline - Create a pipeline
- get_crm_pipeline - Retrieve a pipeline
- list_crm_pipelines - List all pipelines
- patch_crm_pipeline - Update a pipeline
- remove_crm_pipeline - Remove a pipeline
- update_crm_pipeline - Update a pipeline
Profitloss
- get_accounting_profitloss - Retrieve a profitloss
- list_accounting_profitlosses - List all profitlosses
Project
- create_task_project - Create a project
- get_task_project - Retrieve a project
- list_task_projects - List all projects
- patch_task_project - Update a project
- remove_task_project - Remove a project
- update_task_project - Update a project
Promoted
- list_ads_promoteds - List all promoteds
Prompt
- create_genai_prompt - Create a prompt
Pullrequest
- create_repo_pullrequest - Create a pullrequest
- get_repo_pullrequest - Retrieve a pullrequest
- list_repo_pullrequests - List all pullrequests
- patch_repo_pullrequest - Update a pullrequest
- remove_repo_pullrequest - Remove a pullrequest
- update_repo_pullrequest - Update a pullrequest
Purchaseorder
- create_accounting_purchaseorder - Create a purchaseorder
- get_accounting_purchaseorder - Retrieve a purchaseorder
- list_accounting_purchaseorders - List all purchaseorders
- patch_accounting_purchaseorder - Update a purchaseorder
- remove_accounting_purchaseorder - Remove a purchaseorder
- update_accounting_purchaseorder - Update a purchaseorder
Rate
- create_shipping_rate - Create a rate
Recording
- create_uc_recording - Create a recording
- get_calendar_recording - Retrieve a recording
- get_uc_recording - Retrieve a recording
- list_calendar_recordings - List all recordings
- list_uc_recordings - List all recordings
- patch_uc_recording - Update a recording
- remove_uc_recording - Remove a recording
- update_uc_recording - Update a recording
Refund
- get_payment_refund - Retrieve a refund
- list_payment_refunds - List all refunds
Repo
- create_repo_branch - Create a branch
- create_repo_commit - Create a commit
- create_repo_organization - Create an organization
- create_repo_pullrequest - Create a pullrequest
- create_repo_repository - Create a repository
- get_repo_branch - Retrieve a branch
- get_repo_commit - Retrieve a commit
- get_repo_organization - Retrieve an organization
- get_repo_pullrequest - Retrieve a pullrequest
- get_repo_repository - Retrieve a repository
- list_repo_branches - List all branches
- list_repo_commits - List all commits
- list_repo_organizations - List all organizations
- list_repo_pullrequests - List all pullrequests
- list_repo_repositories - List all repositories
- patch_repo_branch - Update a branch
- patch_repo_commit - Update a commit
- patch_repo_organization - Update an organization
- patch_repo_pullrequest - Update a pullrequest
- patch_repo_repository - Update a repository
- remove_repo_branch - Remove a branch
- remove_repo_commit - Remove a commit
- remove_repo_organization - Remove an organization
- remove_repo_pullrequest - Remove a pullrequest
- remove_repo_repository - Remove a repository
- update_repo_branch - Update a branch
- update_repo_commit - Update a commit
- update_repo_organization - Update an organization
- update_repo_pullrequest - Update a pullrequest
- update_repo_repository - Update a repository
Report
- get_accounting_report - Retrieve a report
- list_accounting_reports - List all reports
- list_ads_reports - List all reports
- list_martech_reports - List all reports
Repository
- create_repo_repository - Create a repository
- get_repo_repository - Retrieve a repository
- list_repo_repositories - List all repositories
- patch_repo_repository - Update a repository
- remove_repo_repository - Remove a repository
- update_repo_repository - Update a repository
Request
- create_verification_request - Create a request
- get_verification_request - Retrieve a request
- list_verification_requests - List all requests
- patch_verification_request - Update a request
- remove_verification_request - Remove a request
- update_verification_request - Update a request
Reservation
- create_commerce_reservation - Create a reservation
- get_commerce_reservation - Retrieve a reservation
- list_commerce_reservations - List all reservations
- patch_commerce_reservation - Update a reservation
- remove_commerce_reservation - Remove a reservation
- update_commerce_reservation - Update a reservation
Review
- create_commerce_review - Create a review
- get_commerce_review - Retrieve a review
- list_commerce_reviews - List all reviews
- patch_commerce_review - Update a review
- remove_commerce_review - Remove a review
- update_commerce_review - Update a review
Saleschannel
- create_commerce_saleschannel - Create a saleschannel
- get_commerce_saleschannel - Retrieve a saleschannel
- list_commerce_saleschannels - List all saleschannels
- patch_commerce_saleschannel - Update a saleschannel
- remove_commerce_saleschannel - Remove a saleschannel
- update_commerce_saleschannel - Update a saleschannel
Salesorder
- create_accounting_salesorder - Create a salesorder
- get_accounting_salesorder - Retrieve a salesorder
- list_accounting_salesorders - List all salesorders
- patch_accounting_salesorder - Update a salesorder
- remove_accounting_salesorder - Remove a salesorder
- update_accounting_salesorder - Update a salesorder
Scim
- create_scim_groups - Create group
- create_scim_users - Create user
- get_scim_groups - Get group
- get_scim_users - Get user
- list_scim_groups - List groups
- list_scim_users - List users
- patch_scim_groups - Update group
- patch_scim_users - Update user
- remove_scim_groups - Delete group
- remove_scim_users - Delete user
- update_scim_groups - Update group
- update_scim_users - Update user
Scorecard
- create_ats_scorecard - Create a scorecard
- get_ats_scorecard - Retrieve a scorecard
- list_ats_scorecards - List all scorecards
- patch_ats_scorecard - Update a scorecard
- remove_ats_scorecard - Remove a scorecard
- update_ats_scorecard - Update a scorecard
Shipment
- create_shipping_shipment - Create a shipment
- get_shipping_shipment - Retrieve a shipment
- list_shipping_shipments - List all shipments
- patch_shipping_shipment - Update a shipment
- remove_shipping_shipment - Remove a shipment
- update_shipping_shipment - Update a shipment
Shipping
- create_shipping_label - Create a label
- create_shipping_rate - Create a rate
- create_shipping_shipment - Create a shipment
- get_shipping_carrier - Retrieve a carrier
- get_shipping_label - Retrieve a label
- get_shipping_shipment - Retrieve a shipment
- get_shipping_tracking - Retrieve a tracking
- list_shipping_carriers - List all carriers
- list_shipping_labels - List all labels
- list_shipping_shipments - List all shipments
- patch_shipping_label - Update a label
- patch_shipping_shipment - Update a shipment
- remove_shipping_label - Remove a label
- remove_shipping_shipment - Remove a shipment
- update_shipping_label - Update a label
- update_shipping_shipment - Update a shipment
Space
- create_kms_space - Create a space
- get_kms_space - Retrieve a space
- list_kms_spaces - List all spaces
- patch_kms_space - Update a space
- remove_kms_space - Remove a space
- update_kms_space - Update a space
Storage
- create_storage_file - Create a file
- get_storage_file - Retrieve a file
- list_storage_files - List all files
- patch_storage_file - Update a file
- remove_storage_file - Remove a file
- update_storage_file - Update a file
Student
- create_lms_student - Create a student
- get_lms_student - Retrieve a student
- list_lms_students - List all students
- patch_lms_student - Update a student
- remove_lms_student - Remove a student
- update_lms_student - Update a student
Submission
- get_forms_submission - Retrieve a submission
- list_forms_submissions - List all submissions
Subscription
- create_payment_subscription - Create a subscription
- get_payment_subscription - Retrieve a subscription
- list_payment_subscriptions - List all subscriptions
- patch_payment_subscription - Update a subscription
- remove_payment_subscription - Remove a subscription
- update_payment_subscription - Update a subscription
Target
- list_ads_targets - List all targets
Task
- create_task_comment - Create a comment
- create_task_project - Create a project
- create_task_task - Create a task
- get_task_change - Retrieve a change
- get_task_comment - Retrieve a comment
- get_task_project - Retrieve a project
- get_task_task - Retrieve a task
- list_task_changes - List all changes
- list_task_comments - List all comments
- list_task_projects - List all projects
- list_task_tasks - List all tasks
- patch_task_comment - Update a comment
- patch_task_project - Update a project
- patch_task_task - Update a task
- remove_task_comment - Remove a comment
- remove_task_project - Remove a project
- remove_task_task - Remove a task
- update_task_comment - Update a comment
- update_task_project - Update a project
- update_task_task - Update a task
Taxrate
- create_accounting_taxrate - Create a taxrate
- get_accounting_taxrate - Retrieve a taxrate
- list_accounting_taxrates - List all taxrates
- patch_accounting_taxrate - Update a taxrate
- remove_accounting_taxrate - Remove a taxrate
- update_accounting_taxrate - Update a taxrate
Ticket
- create_ticketing_ticket - Create a ticket
- get_ticketing_ticket - Retrieve a ticket
- list_ticketing_tickets - List all tickets
- patch_ticketing_ticket - Update a ticket
- remove_ticketing_ticket - Remove a ticket
- update_ticketing_ticket - Update a ticket
Ticketing
- create_ticketing_category - Create a category
- create_ticketing_customer - Create a customer
- create_ticketing_note - Create a note
- create_ticketing_ticket - Create a ticket
- get_ticketing_category - Retrieve a category
- get_ticketing_customer - Retrieve a customer
- get_ticketing_note - Retrieve a note
- get_ticketing_ticket - Retrieve a ticket
- list_ticketing_categories - List all categories
- list_ticketing_customers - List all customers
- list_ticketing_notes - List all notes
- list_ticketing_tickets - List all tickets
- patch_ticketing_category - Update a category
- patch_ticketing_customer - Update a customer
- patch_ticketing_note - Update a note
- patch_ticketing_ticket - Update a ticket
- remove_ticketing_category - Remove a category
- remove_ticketing_customer - Remove a customer
- remove_ticketing_note - Remove a note
- remove_ticketing_ticket - Remove a ticket
- update_ticketing_category - Update a category
- update_ticketing_customer - Update a customer
- update_ticketing_note - Update a note
- update_ticketing_ticket - Update a ticket
Timeoff
- create_hris_timeoff - Create a timeoff
- get_hris_timeoff - Retrieve a timeoff
- list_hris_timeoffs - List all timeoffs
- patch_hris_timeoff - Update a timeoff
- remove_hris_timeoff - Remove a timeoff
- update_hris_timeoff - Update a timeoff
Timeshift
- create_hris_timeshift - Create a timeshift
- get_hris_timeshift - Retrieve a timeshift
- list_hris_timeshifts - List all timeshifts
- patch_hris_timeshift - Update a timeshift
- remove_hris_timeshift - Remove a timeshift
- update_hris_timeshift - Update a timeshift
Tracking
- get_shipping_tracking - Retrieve a tracking
Transaction
- create_accounting_transaction - Create a transaction
- get_accounting_transaction - Retrieve a transaction
- list_accounting_transactions - List all transactions
- patch_accounting_transaction - Update a transaction
- remove_accounting_transaction - Remove a transaction
- update_accounting_transaction - Update a transaction
Trialbalance
- get_accounting_trialbalance - Retrieve a trialbalance
- list_accounting_trialbalances - List all trialbalances
Uc
- create_uc_comment - Create a comment
- create_uc_contact - Create a contact
- create_uc_recording - Create a recording
- get_uc_call - Retrieve a call
- get_uc_comment - Retrieve a comment
- get_uc_contact - Retrieve a contact
- get_uc_recording - Retrieve a recording
- list_uc_calls - List all calls
- list_uc_comments - List all comments
- list_uc_contacts - List all contacts
- list_uc_recordings - List all recordings
- patch_uc_comment - Update a comment
- patch_uc_contact - Update a contact
- patch_uc_recording - Update a recording
- remove_uc_comment - Remove a comment
- remove_uc_contact - Remove a contact
- remove_uc_recording - Remove a recording
- update_uc_comment - Update a comment
- update_uc_contact - Update a contact
- update_uc_recording - Update a recording
Unified
- create_unified_connection - Create connection
- create_unified_environment - Create new environments
- create_unified_webhook - Create webhook subscription
- get_unified_apicall - Retrieve specific API Call by its ID
- get_unified_connection - Retrieve connection
- get_unified_integration_auth - Authorize new connection
- get_unified_issue - Retrieve support issue
- get_unified_webhook - Retrieve webhook by its ID
- list_unified_apicalls - Returns API Calls
- list_unified_connections - List all connections
- list_unified_environments - Returns all environments
- list_unified_integration_workspaces - Returns all activated integrations in a workspace
- list_unified_integrations - Returns all integrations
- list_unified_issues - List support issues
- list_unified_webhooks - Returns all registered webhooks
- patch_unified_connection - Update connection
- patch_unified_webhook - Update webhook subscription
- patch_unified_webhook_trigger - Trigger webhook
- remove_unified_connection - Remove connection
- remove_unified_environment - Remove an environment
- remove_unified_webhook - Remove webhook subscription
- update_unified_connection - Update connection
- update_unified_webhook - Update webhook subscription
- update_unified_webhook_trigger - Trigger webhook
User
- create_scim_users - Create user
- get_scim_users - Get user
- list_scim_users - List users
- patch_scim_users - Update user
- remove_scim_users - Delete user
- update_scim_users - Update user
Verification
- create_verification_request - Create a request
- get_verification_package - Retrieve a package
- get_verification_request - Retrieve a request
- list_verification_packages - List all packages
- list_verification_requests - List all requests
- patch_verification_request - Update a request
- remove_verification_request - Remove a request
- update_verification_request - Update a request
Webhook
- create_unified_webhook - Create webhook subscription
- get_unified_webhook - Retrieve webhook by its ID
- list_unified_webhooks - Returns all registered webhooks
- patch_unified_webhook - Update webhook subscription
- patch_unified_webhook_trigger - Trigger webhook
- remove_unified_webhook - Remove webhook subscription
- update_unified_webhook - Update webhook subscription
- update_unified_webhook_trigger - Trigger webhook
Webinar
- create_calendar_webinar - Create a webinar
- get_calendar_webinar - Retrieve a webinar
- list_calendar_webinars - List all webinars
- patch_calendar_webinar - Update a webinar
- remove_calendar_webinar - Remove a webinar
- update_calendar_webinar - Update a webinar
File uploads
Certain SDK methods accept file objects as part of a request body or multi-part request. It is possible and typically recommended to upload files as a stream rather than reading the entire contents into memory. This avoids excessive memory consumption and potentially crashing with out-of-memory errors when working with very large files. The following example demonstrates how to attach a file stream to a request.
[!TIP]
For endpoints that handle file uploads bytes arrays can also be used. However, using streams is recommended for large files.
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.passthrough.create_passthrough_raw(request={
"connection_id": "<id>",
"path": "/var/log",
})
assert res.default_application_json_any is not None
# Handle response
print(res.default_application_json_any)
Retries
Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.
To change the default retry strategy for a single API call, simply provide a RetryConfig object to the call:
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
from unified_python_sdk.utils import BackoffStrategy, RetryConfig
with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.accounting.create_accounting_account(request={
"accounting_account": {},
"connection_id": "<id>",
},
RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
assert res.accounting_account is not None
# Handle response
print(res.accounting_account)
If you'd like to override the default retry strategy for all operations that support retries, you can use the retry_config optional parameter when initializing the SDK:
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
from unified_python_sdk.utils import BackoffStrategy, RetryConfig
with UnifiedTo(
retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.accounting.create_accounting_account(request={
"accounting_account": {},
"connection_id": "<id>",
})
assert res.accounting_account is not None
# Handle response
print(res.accounting_account)
Error Handling
UnifiedToError is the base class for all HTTP error responses. It has the following properties:
| Property | Type | Description |
|---|---|---|
err.message |
str |
Error message |
err.status_code |
int |
HTTP response status code eg 404 |
err.headers |
httpx.Headers |
HTTP response headers |
err.body |
str |
HTTP body. Can be empty string if no body is returned. |
err.raw_response |
httpx.Response |
Raw HTTP response |
Example
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import errors, shared
with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = None
try:
res = unified_to.accounting.create_accounting_account(request={
"accounting_account": {},
"connection_id": "<id>",
})
assert res.accounting_account is not None
# Handle response
print(res.accounting_account)
except errors.UnifiedToError as e:
# The base class for HTTP error responses
print(e.message)
print(e.status_code)
print(e.body)
print(e.headers)
print(e.raw_response)
Error Classes
Primary error:
UnifiedToError: The base class for HTTP error responses.
Less common errors (5)
Network errors:
httpx.RequestError: Base class for request errors.httpx.ConnectError: HTTP client was unable to make a request to a server.httpx.TimeoutException: HTTP request timed out.
Inherit from UnifiedToError:
ResponseValidationError: Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via thecauseattribute.
Server Selection
Select Server by Index
You can override the default server globally by passing a server index to the server_idx: int optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
| # | Server | Description |
|---|---|---|
| 0 | https://api.unified.to |
North American data region |
| 1 | https://api-eu.unified.to |
European data region |
| 2 | https://api-au.unified.to |
Australian data region |
Example
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
with UnifiedTo(
server_idx=0,
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.accounting.create_accounting_account(request={
"accounting_account": {},
"connection_id": "<id>",
})
assert res.accounting_account is not None
# Handle response
print(res.accounting_account)
Override Server URL Per-Client
The default server can also be overridden globally by passing a URL to the server_url: str optional parameter when initializing the SDK client instance. For example:
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
with UnifiedTo(
server_url="https://api-au.unified.to",
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.accounting.create_accounting_account(request={
"accounting_account": {},
"connection_id": "<id>",
})
assert res.accounting_account is not None
# Handle response
print(res.accounting_account)
Custom HTTP Client
The Python SDK makes API calls using the httpx HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with your own HTTP client instance.
Depending on whether you are using the sync or async version of the SDK, you can pass an instance of HttpClient or AsyncHttpClient respectively, which are Protocol's ensuring that the client has the necessary methods to make API calls.
This allows you to wrap the client with your own custom logic, such as adding custom headers, logging, or error handling, or you can just pass an instance of httpx.Client or httpx.AsyncClient directly.
For example, you could specify a header for every request that this sdk makes as follows:
from unified_python_sdk import UnifiedTo
import httpx
http_client = httpx.Client(headers={"x-custom-header": "someValue"})
s = UnifiedTo(client=http_client)
or you could wrap the client with your own custom logic:
from unified_python_sdk import UnifiedTo
from unified_python_sdk.httpclient import AsyncHttpClient
import httpx
class CustomClient(AsyncHttpClient):
client: AsyncHttpClient
def __init__(self, client: AsyncHttpClient):
self.client = client
async def send(
self,
request: httpx.Request,
*,
stream: bool = False,
auth: Union[
httpx._types.AuthTypes, httpx._client.UseClientDefault, None
] = httpx.USE_CLIENT_DEFAULT,
follow_redirects: Union[
bool, httpx._client.UseClientDefault
] = httpx.USE_CLIENT_DEFAULT,
) -> httpx.Response:
request.headers["Client-Level-Header"] = "added by client"
return await self.client.send(
request, stream=stream, auth=auth, follow_redirects=follow_redirects
)
def build_request(
self,
method: str,
url: httpx._types.URLTypes,
*,
content: Optional[httpx._types.RequestContent] = None,
data: Optional[httpx._types.RequestData] = None,
files: Optional[httpx._types.RequestFiles] = None,
json: Optional[Any] = None,
params: Optional[httpx._types.QueryParamTypes] = None,
headers: Optional[httpx._types.HeaderTypes] = None,
cookies: Optional[httpx._types.CookieTypes] = None,
timeout: Union[
httpx._types.TimeoutTypes, httpx._client.UseClientDefault
] = httpx.USE_CLIENT_DEFAULT,
extensions: Optional[httpx._types.RequestExtensions] = None,
) -> httpx.Request:
return self.client.build_request(
method,
url,
content=content,
data=data,
files=files,
json=json,
params=params,
headers=headers,
cookies=cookies,
timeout=timeout,
extensions=extensions,
)
s = UnifiedTo(async_client=CustomClient(httpx.AsyncClient()))
Authentication
Per-Client Security Schemes
This SDK supports the following security scheme globally:
| Name | Type | Scheme |
|---|---|---|
jwt |
apiKey | API key |
You can set the security parameters through the security optional parameter when initializing the SDK client instance. For example:
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
res = unified_to.accounting.create_accounting_account(request={
"accounting_account": {},
"connection_id": "<id>",
})
assert res.accounting_account is not None
# Handle response
print(res.accounting_account)
Resource Management
The UnifiedTo class implements the context manager protocol and registers a finalizer function to close the underlying sync and async HTTPX clients it uses under the hood. This will close HTTP connections, release memory and free up other resources held by the SDK. In short-lived Python programs and notebooks that make a few SDK method calls, resource management may not be a concern. However, in longer-lived programs, it is beneficial to create a single SDK instance via a context manager and reuse it across the application.
from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared
def main():
with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
# Rest of application here...
# Or when using async:
async def amain():
async with UnifiedTo(
security=shared.Security(
jwt="<YOUR_API_KEY_HERE>",
),
) as unified_to:
# Rest of application here...
Debugging
You can setup your SDK to emit debug logs for SDK requests and responses.
You can pass your own logger class directly into your SDK.
from unified_python_sdk import UnifiedTo
import logging
logging.basicConfig(level=logging.DEBUG)
s = UnifiedTo(debug_logger=logging.getLogger("unified_python_sdk"))
Contributions
While we value open-source contributions to this SDK, this library is generated programmatically. Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!
SDK Created by Speakeasy
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file unified_python_sdk-0.57.29.tar.gz.
File metadata
- Download URL: unified_python_sdk-0.57.29.tar.gz
- Upload date:
- Size: 603.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.10.20 Linux/6.8.0-1044-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
906f0d19cdb0d4192ebd870d770452264815308df4372ccd5181d5125a6574ea
|
|
| MD5 |
3fd52efb4492d2ef722cacb8345842be
|
|
| BLAKE2b-256 |
d0556f3f279367498bcf098c3eddc3a94887351dd3c53e724f120fa8dbae1cfb
|
File details
Details for the file unified_python_sdk-0.57.29-py3-none-any.whl.
File metadata
- Download URL: unified_python_sdk-0.57.29-py3-none-any.whl
- Upload date:
- Size: 1.8 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.10.20 Linux/6.8.0-1044-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccf5f1c5437e38e7fb68dfcefad0ca5e3a6b4cd46ac9961934c400325bc85d42
|
|
| MD5 |
edfe42ca24706edf4f199179d67e64d6
|
|
| BLAKE2b-256 |
a777296c29a81e6db43df0378f4134526f63249e89b660e66a8505c7017f942e
|