Unified-python-sdk 0.24.2__tar.gz → 0.29.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- unified_python_sdk-0.29.12/PKG-INFO +1512 -0
- unified_python_sdk-0.29.12/README-PYPI.md +1490 -0
- unified_python_sdk-0.29.12/py.typed +1 -0
- unified_python_sdk-0.29.12/pyproject.toml +57 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/__init__.py +17 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/_hooks/sdkhooks.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/_hooks/types.py +94 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/_version.py +15 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/account.py +1166 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/accounting.py +8474 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/activity.py +1128 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/apicall.py +370 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/application.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/applicationstatus.py +196 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/ats.py +8462 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/auth.py +382 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/basesdk.py +359 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/branch.py +1128 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/call.py +190 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/candidate.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/channel.py +374 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/class_.py +1118 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/collection.py +1174 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/comment.py +2246 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/commerce.py +4622 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/commit.py +1128 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/company.py +2790 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/connection.py +1136 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/contact.py +3398 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/course.py +1124 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/crm.py +6656 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/customer.py +1166 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/deal.py +1102 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/document.py +1128 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/employee.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/enrich.py +374 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/event.py +1118 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/file.py +1128 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/genai.py +380 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/group.py +2240 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/hris.py +5254 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/httpclient.py +84 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/instructor.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/integration.py +572 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/interview.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/inventory.py +1170 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/invoice.py +1166 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/issue.py +192 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/item.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/job.py +1102 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/journal.py +1166 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/kms.py +3328 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/lead.py +1102 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/link.py +1128 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/list.py +1152 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/lms.py +4494 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/location.py +2298 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/login.py +196 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/martech.py +2296 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/member.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/message.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/messaging.py +1518 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/metadata.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/model.py +192 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/errors/__init__.py +6 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/errors/sdkerror.py +22 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/__init__.py +3920 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createaccountingaccount.py +69 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createaccountingcontact.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createaccountinginvoice.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createaccountingjournal.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createaccountingorder.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createaccountingtaxrate.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createaccountingtransaction.py +73 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createatsactivity.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createatsapplication.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createatscandidate.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createatsdocument.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createatsinterview.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createatsjob.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createatsscorecard.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createcommercecollection.py +73 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createcommerceinventory.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createcommerceitem.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createcommercelocation.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createcrmcompany.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createcrmcontact.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createcrmdeal.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createcrmevent.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createcrmlead.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createcrmpipeline.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/creategenaiprompt.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createhriscompany.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createhrisemployee.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createhrisgroup.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createhrislocation.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createkmscomment.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createkmspage.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createkmsspace.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createlmsclass.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createlmscourse.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createlmsinstructor.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createlmsstudent.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createmartechlist.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createmartechmember.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createmessagingmessage.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createmetadatametadata.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createpassthrough_json.py +81 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createpassthrough_raw.py +82 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createpaymentlink.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createpaymentpayment.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createpaymentsubscription.py +73 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createrepobranch.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createrepocommit.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createrepoorganization.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createrepopullrequest.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createreporepository.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createscimgroups.py +52 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createscimusers.py +92 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createstoragefile.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createtaskcomment.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createtaskproject.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createtasktask.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createticketingcustomer.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createticketingnote.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createticketingticket.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createuccontact.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createunifiedconnection.py +33 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/createunifiedwebhook.py +55 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getaccountingaccount.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getaccountingcontact.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getaccountinginvoice.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getaccountingjournal.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getaccountingorder.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getaccountingorganization.py +71 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getaccountingtaxrate.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getaccountingtransaction.py +71 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getatsactivity.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getatsapplication.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getatscandidate.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getatscompany.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getatsdocument.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getatsinterview.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getatsjob.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getatsscorecard.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getcommercecollection.py +69 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getcommerceinventory.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getcommerceitem.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getcommercelocation.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getcrmcompany.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getcrmcontact.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getcrmdeal.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getcrmevent.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getcrmlead.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getcrmpipeline.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/gethriscompany.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/gethrisemployee.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/gethrisgroup.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/gethrislocation.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/gethrispayslip.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/gethristimeoff.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getkmscomment.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getkmspage.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getkmsspace.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getlmsclass.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getlmscourse.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getlmsinstructor.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getlmsstudent.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getmartechlist.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getmartechmember.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getmessagingchannel.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getmessagingmessage.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getmetadatametadata.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getpaymentlink.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getpaymentpayment.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getpaymentpayout.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getpaymentrefund.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getpaymentsubscription.py +71 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getrepobranch.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getrepocommit.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getrepoorganization.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getrepopullrequest.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getreporepository.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getscimgroups.py +53 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getscimusers.py +53 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getstoragefile.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/gettaskcomment.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/gettaskproject.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/gettasktask.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getticketingcustomer.py +67 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getticketingnote.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getticketingticket.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getuccontact.py +65 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getunifiedapicall.py +46 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getunifiedconnection.py +46 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getunifiedintegrationauth.py +254 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getunifiedintegrationlogin.py +92 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/getunifiedwebhook.py +46 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listaccountingaccounts.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listaccountingcontacts.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listaccountinginvoices.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listaccountingjournals.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listaccountingorders.py +107 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listaccountingorganizations.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listaccountingtaxrates.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listaccountingtransactions.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listatsactivities.py +135 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listatsapplications.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listatsapplicationstatuses.py +99 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listatscandidates.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listatscompanies.py +99 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listatsdocuments.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listatsinterviews.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listatsjobs.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listatsscorecards.py +123 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listcommercecollections.py +117 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listcommerceinventories.py +117 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listcommerceitems.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listcommercelocations.py +101 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listcrmcompanies.py +117 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listcrmcontacts.py +117 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listcrmdeals.py +117 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listcrmevents.py +129 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listcrmleads.py +117 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listcrmpipelines.py +99 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listenrichcompanies.py +66 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listenrichpeople.py +90 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listgenaimodels.py +99 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listhriscompanies.py +99 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listhrisemployees.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listhrisgroups.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listhrislocations.py +99 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listhrispayslips.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listhristimeoffs.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listkmscomments.py +117 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listkmspages.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listkmsspaces.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listlmsclasses.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listlmscourses.py +117 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listlmsinstructors.py +129 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listlmsstudents.py +123 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listmartechlists.py +99 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listmartechmembers.py +107 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listmessagingchannels.py +107 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listmessagingmessages.py +113 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listmetadatametadatas.py +107 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listpassthroughs.py +73 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listpaymentlinks.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listpaymentpayments.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listpaymentpayouts.py +99 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listpaymentrefunds.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listpaymentsubscriptions.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listrepobranches.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listrepocommits.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listrepoorganizations.py +101 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listrepopullrequests.py +107 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listreporepositories.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listscimgroups.py +85 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listscimusers.py +85 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/liststoragefiles.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listtaskcomments.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listtaskprojects.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listtasktasks.py +117 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listticketingcustomers.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listticketingnotes.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listticketingtickets.py +113 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listuccalls.py +111 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listuccontacts.py +105 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listunifiedapicalls.py +134 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listunifiedconnections.py +119 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listunifiedintegrations.py +118 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listunifiedintegrationworkspaces.py +121 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listunifiedissues.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/listunifiedwebhooks.py +110 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchaccountingaccount.py +76 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchaccountingcontact.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchaccountinginvoice.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchaccountingjournal.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchaccountingorder.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchaccountingtaxrate.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchaccountingtransaction.py +80 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchatsactivity.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchatsapplication.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchatscandidate.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchatsdocument.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchatsinterview.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchatsjob.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchatsscorecard.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchcommercecollection.py +80 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchcommerceinventory.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchcommerceitem.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchcommercelocation.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchcrmcompany.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchcrmcontact.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchcrmdeal.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchcrmevent.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchcrmlead.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchcrmpipeline.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchhriscompany.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchhrisemployee.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchhrisgroup.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchhrislocation.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchkmscomment.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchkmspage.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchkmsspace.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchlmsclass.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchlmscourse.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchlmsinstructor.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchlmsstudent.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchmartechlist.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchmartechmember.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchmessagingmessage.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchmetadatametadata.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchpassthrough_json.py +81 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchpassthrough_raw.py +82 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchpaymentlink.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchpaymentpayment.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchpaymentsubscription.py +80 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchrepobranch.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchrepocommit.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchrepoorganization.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchrepopullrequest.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchreporepository.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchscimgroups.py +59 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchscimusers.py +59 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchstoragefile.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchtaskcomment.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchtaskproject.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchtasktask.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchticketingcustomer.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchticketingnote.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchticketingticket.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchuccontact.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchunifiedconnection.py +54 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchunifiedwebhook.py +54 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/patchunifiedwebhooktrigger.py +43 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeaccountingaccount.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeaccountingcontact.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeaccountinginvoice.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeaccountingjournal.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeaccountingorder.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeaccountingtaxrate.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeaccountingtransaction.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeatsactivity.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeatsapplication.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeatscandidate.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeatsdocument.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeatsinterview.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeatsjob.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeatsscorecard.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removecommercecollection.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removecommerceinventory.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removecommerceitem.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removecommercelocation.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removecrmcompany.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removecrmcontact.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removecrmdeal.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removecrmevent.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removecrmlead.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removecrmpipeline.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removehriscompany.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removehrisemployee.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removehrisgroup.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removehrislocation.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removekmscomment.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removekmspage.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removekmsspace.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removelmsclass.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removelmscourse.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removelmsinstructor.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removelmsstudent.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removemartechlist.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removemartechmember.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removemessagingmessage.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removemetadatametadata.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removepassthrough.py +73 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removepaymentlink.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removepaymentpayment.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removepaymentsubscription.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removerepobranch.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removerepocommit.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removerepoorganization.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removerepopullrequest.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removereporepository.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removescimgroups.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removescimusers.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removestoragefile.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removetaskcomment.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removetaskproject.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removetasktask.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeticketingcustomer.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeticketingnote.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeticketingticket.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeuccontact.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeunifiedconnection.py +43 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/removeunifiedwebhook.py +43 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateaccountingaccount.py +76 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateaccountingcontact.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateaccountinginvoice.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateaccountingjournal.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateaccountingorder.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateaccountingtaxrate.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateaccountingtransaction.py +80 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateatsactivity.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateatsapplication.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateatscandidate.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateatsdocument.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateatsinterview.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateatsjob.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateatsscorecard.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatecommercecollection.py +80 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatecommerceinventory.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatecommerceitem.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatecommercelocation.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatecrmcompany.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatecrmcontact.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatecrmdeal.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatecrmevent.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatecrmlead.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatecrmpipeline.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatehriscompany.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatehrisemployee.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatehrisgroup.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatehrislocation.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatekmscomment.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatekmspage.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatekmsspace.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatelmsclass.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatelmscourse.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatelmsinstructor.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatelmsstudent.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatemartechlist.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatemartechmember.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatemessagingmessage.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatemetadatametadata.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatepassthrough_json.py +81 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatepassthrough_raw.py +82 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatepaymentlink.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatepaymentpayment.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatepaymentsubscription.py +80 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updaterepobranch.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updaterepocommit.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updaterepoorganization.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updaterepopullrequest.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatereporepository.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatescimgroups.py +59 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatescimusers.py +59 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatestoragefile.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatetaskcomment.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatetaskproject.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updatetasktask.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateticketingcustomer.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateticketingnote.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateticketingticket.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateuccontact.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateunifiedconnection.py +54 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateunifiedwebhook.py +54 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/operations/updateunifiedwebhooktrigger.py +43 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/__init__.py +992 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingaccount.py +88 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingcontact.py +98 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingcontactpaymentmethod.py +34 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingemail.py +24 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountinginvoice.py +109 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingjournal.py +48 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingjournallineitem.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountinglineitem.py +63 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingorder.py +76 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingorganization.py +55 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingtaxrate.py +36 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingtelephone.py +26 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingtransaction.py +77 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingtransactioncontact.py +13 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/accountingtransactionlineitem.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/apicall.py +70 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsactivity.py +86 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsaddress.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsapplication.py +77 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsapplicationanswer.py +17 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atscandidate.py +90 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atscompany.py +46 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atscompensation.py +45 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsdocument.py +58 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsemail.py +27 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsinterview.py +60 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsjob.py +101 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsjobquestion.py +48 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsoffer.py +13 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsscorecard.py +57 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsscorecardquestion.py +20 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atsstatus.py +44 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/atstelephone.py +26 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/commercecollection.py +73 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/commerceinventory.py +36 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/commerceitem.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/commerceitemmedia.py +42 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/commerceitemmetadata.py +29 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/commerceitemoption.py +23 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/commerceitemprice.py +20 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/commerceitemvariant.py +101 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/commercelocation.py +40 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/connection.py +68 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/crmcompany.py +85 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/crmcontact.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/crmdeal.py +72 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/crmemail.py +24 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/crmevent.py +120 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/crmeventformfield.py +41 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/crmeventformoption.py +17 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/crmlead.py +69 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/crmpipeline.py +40 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/crmstage.py +33 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/crmtelephone.py +26 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/enrichcompany.py +108 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/enrichemail.py +27 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/enrichperson.py +112 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/enrichpersonworkhistory.py +33 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/enrichtelephone.py +26 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/genaicontent.py +23 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/genaimodel.py +32 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/genaiprompt.py +33 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/hriscompany.py +37 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/hriscompensation.py +42 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/hrisemail.py +24 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/hrisemployee.py +158 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/hrisgroup.py +59 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/hrislocation.py +62 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/hrispayslip.py +59 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/hrispayslipdetail.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/hristelephone.py +26 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/hristimeoff.py +60 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/integration.py +96 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/integrationsupport.py +567 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/issue.py +59 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/kmscomment.py +55 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/kmspage.py +63 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/kmspagemetadata.py +20 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/kmsspace.py +42 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/lmsclass.py +46 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/lmscourse.py +58 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/lmsemail.py +13 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/lmsinstructor.py +41 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/lmsmedia.py +36 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/lmsstudent.py +45 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/lmstelephone.py +26 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/marketingemail.py +24 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/marketinglist.py +48 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/marketingmember.py +49 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/messagingattachment.py +29 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/messagingchannel.py +49 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/messagingmember.py +20 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/messagingmessage.py +74 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/metadatametadata.py +36 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/paymentlineitem.py +63 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/paymentlink.py +52 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/paymentpayment.py +48 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/paymentpayout.py +43 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/paymentrefund.py +50 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/paymentsubscription.py +88 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_accountingcontact_billing_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_accountingcontact_shipping_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_accountingorder_billing_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_accountingorder_shipping_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_accountingorganization_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_atsactivity_from.py +27 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_atscandidate_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_atscompany_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_commercelocation_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_connection_auth.py +87 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_connection_categories.py +28 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_connection_permissions.py +137 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_crmcompany_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_crmcontact_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_crmevent_call.py +25 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_crmevent_email.py +38 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_crmevent_form.py +25 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_crmevent_marketing_email.py +37 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_crmevent_meeting.py +28 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_crmevent_note.py +21 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_crmevent_page_view.py +20 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_crmevent_task.py +45 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_crmlead_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_enrichcompany_address.py +39 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_enrichperson_address.py +39 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_hriscompany_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_hrisemployee_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_hrisemployee_employee_roles.py +12 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_hrislocation_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_integration_categories.py +28 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_integrationsupport_webhook_events.py +29 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_integrationsupport_webhook_events_created.py +9 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_integrationsupport_webhook_events_deleted.py +9 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_integrationsupport_webhook_events_updated.py +9 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_lmsstudent_address.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_messagingmessage_author_member.py +20 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_scimgroup_meta.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_scimgroup_schemas.py +10 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_scimuser_meta.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_scimuser_name.py +34 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_scimuser_schemas.py +19 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_scimuser_urn_ietf_params_scim_schemas_extension_enterprise_2_0_user.py +85 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_scimuser_urn_ietf_params_scim_schemas_extension_enterprise_2_0_user_manager.py +47 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_scimuser_urn_ietf_params_scim_schemas_extension_lattice_attributes_1_0_user.py +88 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_scimuser_urn_ietf_params_scim_schemas_extension_peakon_2_0_user.py +38 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_storagepermission_roles.py +10 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/property_uccall_telephone.py +30 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/repobranch.py +30 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/repocommit.py +36 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/repoorganization.py +41 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/repopullrequest.py +49 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/reporepository.py +42 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/scimaddress.py +42 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/scimemail.py +30 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/scimentitlement.py +23 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/scimgroup.py +43 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/scimgroupmember.py +38 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/scimims.py +35 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/scimmanager.py +37 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/scimphonenumber.py +33 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/scimphoto.py +29 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/scimrole.py +23 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/scimuser.py +150 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/scimusergroups.py +30 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/security.py +24 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/storagefile.py +70 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/storagepermission.py +27 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/taskcomment.py +36 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/taskproject.py +42 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/tasktask.py +78 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/ticketingcustomer.py +38 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/ticketingemail.py +24 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/ticketingnote.py +36 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/ticketingtelephone.py +26 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/ticketingticket.py +66 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/uccall.py +47 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/uccontact.py +51 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/ucemail.py +24 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/uctelephone.py +26 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/models/shared/webhook.py +161 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/note.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/order.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/organization.py +1526 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/page.py +1102 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/passthrough.py +2376 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/payment.py +4164 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/payout.py +374 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/payslip.py +372 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/person.py +192 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/pipeline.py +1128 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/project.py +1128 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/prompt.py +198 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/pullrequest.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/py.typed +1 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/refund.py +374 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/repo.py +5678 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/repository.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/scim.py +2240 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/scorecard.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/sdk.py +364 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/sdkconfiguration.py +56 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/space.py +1118 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/storage.py +1128 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/student.py +1128 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/subscription.py +1174 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/task.py +3354 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/taxrate.py +1166 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/ticket.py +1154 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/ticketing.py +3454 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/timeoff.py +372 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/transaction.py +1178 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/types/__init__.py +21 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/types/basemodel.py +39 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/uc.py +1304 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/unified.py +3740 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/user.py +1124 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/__init__.py +97 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/annotations.py +55 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/enums.py +34 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/eventstreaming.py +238 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/forms.py +202 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/headers.py +136 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/logger.py +22 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/metadata.py +118 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/queryparams.py +205 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/requestbodies.py +66 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/retries.py +217 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/security.py +174 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/serializers.py +215 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/url.py +155 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/utils/values.py +134 -0
- unified_python_sdk-0.29.12/src/unified_python_sdk/webhook.py +1510 -0
- Unified-python-sdk-0.24.2/PKG-INFO +0 -1061
- Unified-python-sdk-0.24.2/README.md +0 -1049
- Unified-python-sdk-0.24.2/setup.cfg +0 -4
- Unified-python-sdk-0.24.2/setup.py +0 -55
- Unified-python-sdk-0.24.2/src/Unified_python_sdk.egg-info/PKG-INFO +0 -1061
- Unified-python-sdk-0.24.2/src/Unified_python_sdk.egg-info/SOURCES.txt +0 -545
- Unified-python-sdk-0.24.2/src/Unified_python_sdk.egg-info/dependency_links.txt +0 -1
- Unified-python-sdk-0.24.2/src/Unified_python_sdk.egg-info/requires.txt +0 -17
- Unified-python-sdk-0.24.2/src/Unified_python_sdk.egg-info/top_level.txt +0 -1
- Unified-python-sdk-0.24.2/src/unified_to/__init__.py +0 -4
- Unified-python-sdk-0.24.2/src/unified_to/_hooks/sdkhooks.py +0 -55
- Unified-python-sdk-0.24.2/src/unified_to/_hooks/types.py +0 -74
- Unified-python-sdk-0.24.2/src/unified_to/account.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/accounting.py +0 -2145
- Unified-python-sdk-0.24.2/src/unified_to/activity.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/apicall.py +0 -128
- Unified-python-sdk-0.24.2/src/unified_to/application.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/applicationstatus.py +0 -73
- Unified-python-sdk-0.24.2/src/unified_to/ats.py +0 -2537
- Unified-python-sdk-0.24.2/src/unified_to/auth.py +0 -130
- Unified-python-sdk-0.24.2/src/unified_to/call.py +0 -73
- Unified-python-sdk-0.24.2/src/unified_to/candidate.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/channel.py +0 -129
- Unified-python-sdk-0.24.2/src/unified_to/collection.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/commerce.py +0 -1361
- Unified-python-sdk-0.24.2/src/unified_to/company.py +0 -857
- Unified-python-sdk-0.24.2/src/unified_to/connection.py +0 -351
- Unified-python-sdk-0.24.2/src/unified_to/contact.py +0 -1025
- Unified-python-sdk-0.24.2/src/unified_to/crm.py +0 -2033
- Unified-python-sdk-0.24.2/src/unified_to/customer.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/deal.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/document.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/employee.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/enrich.py +0 -129
- Unified-python-sdk-0.24.2/src/unified_to/event.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/file.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/genai.py +0 -132
- Unified-python-sdk-0.24.2/src/unified_to/group.py +0 -630
- Unified-python-sdk-0.24.2/src/unified_to/hris.py +0 -1585
- Unified-python-sdk-0.24.2/src/unified_to/integration.py +0 -188
- Unified-python-sdk-0.24.2/src/unified_to/interview.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/inventory.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/invoice.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/issue.py +0 -73
- Unified-python-sdk-0.24.2/src/unified_to/item.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/job.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/journal.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/kms.py +0 -689
- Unified-python-sdk-0.24.2/src/unified_to/lead.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/link.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/list.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/location.py +0 -689
- Unified-python-sdk-0.24.2/src/unified_to/login.py +0 -73
- Unified-python-sdk-0.24.2/src/unified_to/martech.py +0 -689
- Unified-python-sdk-0.24.2/src/unified_to/member.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/message.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/messaging.py +0 -465
- Unified-python-sdk-0.24.2/src/unified_to/model.py +0 -73
- Unified-python-sdk-0.24.2/src/unified_to/models/__init__.py +0 -4
- Unified-python-sdk-0.24.2/src/unified_to/models/errors/__init__.py +0 -5
- Unified-python-sdk-0.24.2/src/unified_to/models/errors/sdkerror.py +0 -24
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/__init__.py +0 -310
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createaccountingaccount.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createaccountingcontact.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createaccountinginvoice.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createaccountingjournal.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createaccountingtaxrate.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createaccountingtransaction.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createatsactivity.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createatsapplication.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createatscandidate.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createatsdocument.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createatsinterview.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createatsjob.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createatsscorecard.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createcommercecollection.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createcommerceinventory.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createcommerceitem.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createcommercelocation.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createcrmcompany.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createcrmcontact.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createcrmdeal.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createcrmevent.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createcrmlead.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createcrmpipeline.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/creategenaiprompt.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createhriscompany.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createhrisemployee.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createhrisgroup.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createhrislocation.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createkmspage.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createkmsspace.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createmartechlist.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createmartechmember.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createmessagingmessage.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createpassthrough_json.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createpassthrough_raw.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createpaymentlink.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createpaymentpayment.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createscimgroups.py +0 -30
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createscimusers.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createstoragefile.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createtaskproject.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createtasktask.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createticketingcustomer.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createticketingnote.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createticketingticket.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createuccontact.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createunifiedconnection.py +0 -21
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/createunifiedwebhook.py +0 -31
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getaccountingaccount.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getaccountingcontact.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getaccountinginvoice.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getaccountingjournal.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getaccountingorganization.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getaccountingtaxrate.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getaccountingtransaction.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getatsactivity.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getatsapplication.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getatscandidate.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getatscompany.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getatsdocument.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getatsinterview.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getatsjob.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getatsscorecard.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getcommercecollection.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getcommerceinventory.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getcommerceitem.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getcommercelocation.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getcrmcompany.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getcrmcontact.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getcrmdeal.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getcrmevent.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getcrmlead.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getcrmpipeline.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/gethriscompany.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/gethrisemployee.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/gethrisgroup.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/gethrislocation.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/gethrispayslip.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/gethristimeoff.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getkmspage.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getkmsspace.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getmartechlist.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getmartechmember.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getmessagingchannel.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getmessagingmessage.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getpaymentlink.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getpaymentpayment.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getpaymentpayout.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getpaymentrefund.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getscimusers.py +0 -31
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getstoragefile.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/gettaskproject.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/gettasktask.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getticketingcustomer.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getticketingnote.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getticketingticket.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getuccontact.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getunifiedapicall.py +0 -29
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getunifiedconnection.py +0 -29
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getunifiedintegrationauth.py +0 -150
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getunifiedintegrationlogin.py +0 -38
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/getunifiedwebhook.py +0 -29
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listaccountingaccounts.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listaccountingcontacts.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listaccountinginvoices.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listaccountingjournals.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listaccountingorganizations.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listaccountingtaxrates.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listaccountingtransactions.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listatsactivities.py +0 -46
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listatsapplications.py +0 -42
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listatsapplicationstatuses.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listatscandidates.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listatscompanies.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listatsdocuments.py +0 -42
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listatsinterviews.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listatsjobs.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listatsscorecards.py +0 -44
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listcommercecollections.py +0 -42
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listcommerceinventories.py +0 -42
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listcommerceitems.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listcommercelocations.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listcrmcompanies.py +0 -43
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listcrmcontacts.py +0 -43
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listcrmdeals.py +0 -43
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listcrmevents.py +0 -45
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listcrmleads.py +0 -43
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listcrmpipelines.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listenrichcompanies.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listenrichpeople.py +0 -39
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listgenaimodels.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listhriscompanies.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listhrisemployees.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listhrisgroups.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listhrislocations.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listhrispayslips.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listhristimeoffs.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listkmspages.py +0 -42
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listkmsspaces.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listmartechlists.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listmartechmembers.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listmessagingchannels.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listmessagingmessages.py +0 -42
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listpassthroughs.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listpaymentlinks.py +0 -42
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listpaymentpayments.py +0 -42
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listpaymentpayouts.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listpaymentrefunds.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listscimgroups.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listscimusers.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/liststoragefiles.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listtaskprojects.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listtasktasks.py +0 -43
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listticketingcustomers.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listticketingnotes.py +0 -42
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listticketingtickets.py +0 -42
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listuccalls.py +0 -42
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listuccontacts.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listunifiedapicalls.py +0 -43
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listunifiedconnections.py +0 -61
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listunifiedintegrations.py +0 -60
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listunifiedintegrationworkspaces.py +0 -60
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listunifiedissues.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/listunifiedwebhooks.py +0 -57
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchaccountingaccount.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchaccountingcontact.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchaccountinginvoice.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchaccountingjournal.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchaccountingtaxrate.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchaccountingtransaction.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchatsactivity.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchatsapplication.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchatscandidate.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchatsdocument.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchatsinterview.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchatsjob.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchatsscorecard.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchcommercecollection.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchcommerceinventory.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchcommerceitem.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchcommercelocation.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchcrmcompany.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchcrmcontact.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchcrmdeal.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchcrmevent.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchcrmlead.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchcrmpipeline.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchhriscompany.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchhrisemployee.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchhrisgroup.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchhrislocation.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchkmspage.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchkmsspace.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchmartechlist.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchmartechmember.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchmessagingmessage.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchpassthrough_json.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchpassthrough_raw.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchpaymentlink.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchpaymentpayment.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchscimgroups.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchscimusers.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchstoragefile.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchtaskproject.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchtasktask.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchticketingcustomer.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchticketingnote.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchticketingticket.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchuccontact.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchunifiedconnection.py +0 -31
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchunifiedwebhook.py +0 -31
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/patchunifiedwebhooktrigger.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeaccountingaccount.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeaccountingcontact.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeaccountinginvoice.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeaccountingjournal.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeaccountingtaxrate.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeaccountingtransaction.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeatsactivity.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeatsapplication.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeatscandidate.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeatsdocument.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeatsinterview.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeatsjob.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeatsscorecard.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removecommercecollection.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removecommerceinventory.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removecommerceitem.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removecommercelocation.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removecrmcompany.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removecrmcontact.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removecrmdeal.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removecrmevent.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removecrmlead.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removecrmpipeline.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removehriscompany.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removehrisemployee.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removehrisgroup.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removehrislocation.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removekmspage.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removekmsspace.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removemartechlist.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removemartechmember.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removemessagingmessage.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removepassthrough.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removepaymentlink.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removepaymentpayment.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removescimgroups.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removescimusers.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removestoragefile.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removetaskproject.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removetasktask.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeticketingcustomer.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeticketingnote.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeticketingticket.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeuccontact.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeunifiedconnection.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/removeunifiedwebhook.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateaccountingaccount.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateaccountingcontact.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateaccountinginvoice.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateaccountingjournal.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateaccountingtaxrate.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateaccountingtransaction.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateatsactivity.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateatsapplication.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateatscandidate.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateatsdocument.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateatsinterview.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateatsjob.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateatsscorecard.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatecommercecollection.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatecommerceinventory.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatecommerceitem.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatecommercelocation.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatecrmcompany.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatecrmcontact.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatecrmdeal.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatecrmevent.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatecrmlead.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatecrmpipeline.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatehriscompany.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatehrisemployee.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatehrisgroup.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatehrislocation.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatekmspage.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatekmsspace.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatemartechlist.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatemartechmember.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatemessagingmessage.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatepassthrough_json.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatepassthrough_raw.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatepaymentlink.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatepaymentpayment.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatescimgroups.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatescimusers.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatestoragefile.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatetaskproject.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updatetasktask.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateticketingcustomer.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateticketingnote.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateticketingticket.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateuccontact.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateunifiedconnection.py +0 -31
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateunifiedwebhook.py +0 -31
- Unified-python-sdk-0.24.2/src/unified_to/models/operations/updateunifiedwebhooktrigger.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/__init__.py +0 -149
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountingaccount.py +0 -54
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountingcontact.py +0 -55
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountingcontactpaymentmethod.py +0 -29
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountingemail.py +0 -23
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountinginvoice.py +0 -56
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountingjournal.py +0 -26
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountingjournallineitem.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountinglineitem.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountingorganization.py +0 -30
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountingtaxrate.py +0 -24
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountingtelephone.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountingtransaction.py +0 -37
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountingtransactioncontact.py +0 -9
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/accountingtransactionlineitem.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/apicall.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsactivity.py +0 -44
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsaddress.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsapplication.py +0 -51
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsapplicationanswer.py +0 -16
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atscandidate.py +0 -50
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atscompany.py +0 -27
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atscompensation.py +0 -38
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsdocument.py +0 -38
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsemail.py +0 -24
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsinterview.py +0 -38
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsjob.py +0 -62
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsjobquestion.py +0 -37
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsoffer.py +0 -9
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsscorecard.py +0 -37
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsscorecardquestion.py +0 -17
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atsstatus.py +0 -37
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/atstelephone.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/commercecollection.py +0 -42
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/commerceinventory.py +0 -24
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/commerceitem.py +0 -38
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/commerceitemmedia.py +0 -29
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/commerceitemoption.py +0 -18
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/commerceitemprice.py +0 -17
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/commerceitemvariant.py +0 -57
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/commercelocation.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/commercemetadata.py +0 -20
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/connection.py +0 -38
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/crmcompany.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/crmcontact.py +0 -38
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/crmdeal.py +0 -36
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/crmemail.py +0 -23
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/crmevent.py +0 -55
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/crmlead.py +0 -35
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/crmpipeline.py +0 -26
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/crmstage.py +0 -23
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/crmtelephone.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/enrichcompany.py +0 -49
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/enrichemail.py +0 -24
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/enrichperson.py +0 -55
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/enrichpersonworkhistory.py +0 -23
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/enrichtelephone.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/genaicontent.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/genaimodel.py +0 -21
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/genaiprompt.py +0 -21
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/group.py +0 -24
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/hriscompany.py +0 -24
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/hriscompensation.py +0 -37
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/hrisemail.py +0 -23
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/hrisemployee.py +0 -90
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/hrisgroup.py +0 -39
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/hrislocation.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/hrispayslip.py +0 -37
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/hrispayslipdetail.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/hristelephone.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/hristimeoff.py +0 -40
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/integration.py +0 -46
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/integrationsupport.py +0 -288
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/issue.py +0 -38
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/kmspage.py +0 -34
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/kmsspace.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/marketingemail.py +0 -23
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/marketinglist.py +0 -23
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/marketingmember.py +0 -30
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/messagingattachment.py +0 -19
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/messagingchannel.py +0 -29
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/messagingmember.py +0 -17
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/messagingmessage.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/paymentlink.py +0 -29
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/paymentlinklineitem.py +0 -33
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/paymentpayment.py +0 -28
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/paymentpayout.py +0 -30
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/paymentrefund.py +0 -32
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_accountingcontact_billing_address.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_accountingcontact_shipping_address.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_accountingorganization_address.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_atsactivity_from.py +0 -24
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_atscandidate_address.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_atscompany_address.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_commercelocation_address.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_connection_auth.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_connection_categories.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_connection_permissions.py +0 -109
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_crmcompany_address.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_crmcontact_address.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_crmevent_call.py +0 -20
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_crmevent_email.py +0 -23
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_crmevent_meeting.py +0 -21
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_crmevent_note.py +0 -17
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_crmevent_task.py +0 -36
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_crmlead_address.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_enrichcompany_address.py +0 -23
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_enrichperson_address.py +0 -23
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_group_meta.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_group_schemas.py +0 -8
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_hriscompany_address.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_hrisemployee_address.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_hrisemployee_employee_roles.py +0 -12
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_hrislocation_address.py +0 -22
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_integration_categories.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_integrationsupport_webhook_events.py +0 -20
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_messagingmessage_author_member.py +0 -17
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_created.py +0 -9
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_deleted.py +0 -9
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_updated.py +0 -9
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_property_user_urn_ietf_params_scim_schemas_extension_enterprise_2_0_user_manager.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_storagepermission_roles.py +0 -10
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_uccall_telephone.py +0 -26
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_user_meta.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_user_name.py +0 -20
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_user_schemas.py +0 -11
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_user_urn_ietf_params_scim_schemas_extension_enterprise_2_0_user.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_user_urn_ietf_params_scim_schemas_extension_lattice_attributes_1_0_user.py +0 -53
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/property_user_urn_ietf_params_scim_schemas_extension_peakon_2_0_user.py +0 -26
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/security.py +0 -12
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/storagefile.py +0 -37
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/storagepermission.py +0 -18
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/taskproject.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/tasktask.py +0 -41
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/ticketingcustomer.py +0 -26
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/ticketingemail.py +0 -23
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/ticketingnote.py +0 -24
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/ticketingtelephone.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/ticketingticket.py +0 -38
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/uccall.py +0 -28
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/uccontact.py +0 -31
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/ucemail.py +0 -23
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/uctelephone.py +0 -25
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/undefined.py +0 -30
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/user.py +0 -49
- Unified-python-sdk-0.24.2/src/unified_to/models/shared/webhook.py +0 -109
- Unified-python-sdk-0.24.2/src/unified_to/note.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/organization.py +0 -129
- Unified-python-sdk-0.24.2/src/unified_to/page.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/passthrough.py +0 -612
- Unified-python-sdk-0.24.2/src/unified_to/payment.py +0 -913
- Unified-python-sdk-0.24.2/src/unified_to/payout.py +0 -129
- Unified-python-sdk-0.24.2/src/unified_to/payslip.py +0 -129
- Unified-python-sdk-0.24.2/src/unified_to/person.py +0 -73
- Unified-python-sdk-0.24.2/src/unified_to/pipeline.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/project.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/prompt.py +0 -76
- Unified-python-sdk-0.24.2/src/unified_to/refund.py +0 -129
- Unified-python-sdk-0.24.2/src/unified_to/scim.py +0 -627
- Unified-python-sdk-0.24.2/src/unified_to/scorecard.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/sdk.py +0 -284
- Unified-python-sdk-0.24.2/src/unified_to/sdkconfiguration.py +0 -47
- Unified-python-sdk-0.24.2/src/unified_to/space.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/storage.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/task.py +0 -689
- Unified-python-sdk-0.24.2/src/unified_to/taxrate.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/ticket.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/ticketing.py +0 -1025
- Unified-python-sdk-0.24.2/src/unified_to/timeoff.py +0 -129
- Unified-python-sdk-0.24.2/src/unified_to/transaction.py +0 -353
- Unified-python-sdk-0.24.2/src/unified_to/uc.py +0 -409
- Unified-python-sdk-0.24.2/src/unified_to/unified.py +0 -1118
- Unified-python-sdk-0.24.2/src/unified_to/user.py +0 -350
- Unified-python-sdk-0.24.2/src/unified_to/utils/__init__.py +0 -4
- Unified-python-sdk-0.24.2/src/unified_to/utils/retries.py +0 -119
- Unified-python-sdk-0.24.2/src/unified_to/utils/utils.py +0 -1146
- Unified-python-sdk-0.24.2/src/unified_to/webhook.py +0 -446
- {Unified-python-sdk-0.24.2 → unified_python_sdk-0.29.12}/LICENSE.md +0 -0
- {Unified-python-sdk-0.24.2/src/unified_to → unified_python_sdk-0.29.12/src/unified_python_sdk}/_hooks/__init__.py +0 -0
|
@@ -0,0 +1,1512 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: Unified-python-sdk
|
|
3
|
+
Version: 0.29.12
|
|
4
|
+
Summary: Python Client SDK for Unified.to
|
|
5
|
+
Author: Unified API Inc.
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Requires-Dist: eval-type-backport (>=0.2.0,<0.3.0)
|
|
14
|
+
Requires-Dist: httpx (>=0.28.1,<0.29.0)
|
|
15
|
+
Requires-Dist: jsonpath-python (>=1.0.6,<2.0.0)
|
|
16
|
+
Requires-Dist: pydantic (>=2.10.3,<2.11.0)
|
|
17
|
+
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
|
|
18
|
+
Requires-Dist: typing-inspect (>=0.9.0,<0.10.0)
|
|
19
|
+
Project-URL: Repository, https://github.com/unified-to/unified-python-sdk.git
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
<div align="left">
|
|
23
|
+
<a href="https://speakeasyapi.dev/"><img src="https://custom-icon-badges.demolab.com/badge/-Built%20By%20Speakeasy-212015?style=for-the-badge&logoColor=FBE331&logo=speakeasy&labelColor=545454" /></a>
|
|
24
|
+
<a href="https://github.com/unified-to/unified-python-sdk/actions"><img src="https://img.shields.io/github/actions/workflow/status/unified-to/unified-python-sdk/speakeasy_sdk_generation.yml?style=for-the-badge" /></a>
|
|
25
|
+
|
|
26
|
+
</div>
|
|
27
|
+
|
|
28
|
+
<!-- Start Summary [summary] -->
|
|
29
|
+
## Summary
|
|
30
|
+
|
|
31
|
+
Unified.to API: One API to Rule Them All
|
|
32
|
+
<!-- End Summary [summary] -->
|
|
33
|
+
|
|
34
|
+
<!-- Start Table of Contents [toc] -->
|
|
35
|
+
## Table of Contents
|
|
36
|
+
<!-- $toc-max-depth=2 -->
|
|
37
|
+
* [SDK Installation](https://github.com/unified-to/unified-python-sdk/blob/master/#sdk-installation)
|
|
38
|
+
* [IDE Support](https://github.com/unified-to/unified-python-sdk/blob/master/#ide-support)
|
|
39
|
+
* [SDK Example Usage](https://github.com/unified-to/unified-python-sdk/blob/master/#sdk-example-usage)
|
|
40
|
+
* [Available Resources and Operations](https://github.com/unified-to/unified-python-sdk/blob/master/#available-resources-and-operations)
|
|
41
|
+
* [File uploads](https://github.com/unified-to/unified-python-sdk/blob/master/#file-uploads)
|
|
42
|
+
* [Retries](https://github.com/unified-to/unified-python-sdk/blob/master/#retries)
|
|
43
|
+
* [Error Handling](https://github.com/unified-to/unified-python-sdk/blob/master/#error-handling)
|
|
44
|
+
* [Server Selection](https://github.com/unified-to/unified-python-sdk/blob/master/#server-selection)
|
|
45
|
+
* [Custom HTTP Client](https://github.com/unified-to/unified-python-sdk/blob/master/#custom-http-client)
|
|
46
|
+
* [Authentication](https://github.com/unified-to/unified-python-sdk/blob/master/#authentication)
|
|
47
|
+
* [Debugging](https://github.com/unified-to/unified-python-sdk/blob/master/#debugging)
|
|
48
|
+
|
|
49
|
+
<!-- End Table of Contents [toc] -->
|
|
50
|
+
|
|
51
|
+
<!-- Start SDK Installation [installation] -->
|
|
52
|
+
## SDK Installation
|
|
53
|
+
|
|
54
|
+
The SDK can be installed with either *pip* or *poetry* package managers.
|
|
55
|
+
|
|
56
|
+
### PIP
|
|
57
|
+
|
|
58
|
+
*PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
pip install Unified-python-sdk
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
### Poetry
|
|
65
|
+
|
|
66
|
+
*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.
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
poetry add Unified-python-sdk
|
|
70
|
+
```
|
|
71
|
+
<!-- End SDK Installation [installation] -->
|
|
72
|
+
|
|
73
|
+
<!-- Start IDE Support [idesupport] -->
|
|
74
|
+
## IDE Support
|
|
75
|
+
|
|
76
|
+
### PyCharm
|
|
77
|
+
|
|
78
|
+
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.
|
|
79
|
+
|
|
80
|
+
- [PyCharm Pydantic Plugin](https://docs.pydantic.dev/latest/integrations/pycharm/)
|
|
81
|
+
<!-- End IDE Support [idesupport] -->
|
|
82
|
+
|
|
83
|
+
<!-- Start SDK Example Usage [usage] -->
|
|
84
|
+
## SDK Example Usage
|
|
85
|
+
|
|
86
|
+
### Example
|
|
87
|
+
|
|
88
|
+
```python
|
|
89
|
+
# Synchronous Example
|
|
90
|
+
from unified_python_sdk import UnifiedTo
|
|
91
|
+
from unified_python_sdk.models import shared
|
|
92
|
+
|
|
93
|
+
with UnifiedTo(
|
|
94
|
+
security=shared.Security(
|
|
95
|
+
jwt="<YOUR_API_KEY_HERE>",
|
|
96
|
+
),
|
|
97
|
+
) as unified_to:
|
|
98
|
+
|
|
99
|
+
res = unified_to.accounting.create_accounting_account(request={
|
|
100
|
+
"connection_id": "<id>",
|
|
101
|
+
})
|
|
102
|
+
|
|
103
|
+
assert res.accounting_account is not None
|
|
104
|
+
|
|
105
|
+
# Handle response
|
|
106
|
+
print(res.accounting_account)
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
</br>
|
|
110
|
+
|
|
111
|
+
The same SDK client can also be used to make asychronous requests by importing asyncio.
|
|
112
|
+
```python
|
|
113
|
+
# Asynchronous Example
|
|
114
|
+
import asyncio
|
|
115
|
+
from unified_python_sdk import UnifiedTo
|
|
116
|
+
from unified_python_sdk.models import shared
|
|
117
|
+
|
|
118
|
+
async def main():
|
|
119
|
+
async with UnifiedTo(
|
|
120
|
+
security=shared.Security(
|
|
121
|
+
jwt="<YOUR_API_KEY_HERE>",
|
|
122
|
+
),
|
|
123
|
+
) as unified_to:
|
|
124
|
+
|
|
125
|
+
res = await unified_to.accounting.create_accounting_account_async(request={
|
|
126
|
+
"connection_id": "<id>",
|
|
127
|
+
})
|
|
128
|
+
|
|
129
|
+
assert res.accounting_account is not None
|
|
130
|
+
|
|
131
|
+
# Handle response
|
|
132
|
+
print(res.accounting_account)
|
|
133
|
+
|
|
134
|
+
asyncio.run(main())
|
|
135
|
+
```
|
|
136
|
+
<!-- End SDK Example Usage [usage] -->
|
|
137
|
+
|
|
138
|
+
<!-- Start Available Resources and Operations [operations] -->
|
|
139
|
+
## Available Resources and Operations
|
|
140
|
+
|
|
141
|
+
<details open>
|
|
142
|
+
<summary>Available methods</summary>
|
|
143
|
+
|
|
144
|
+
### [account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md)
|
|
145
|
+
|
|
146
|
+
* [create_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#create_accounting_account) - Create an account
|
|
147
|
+
* [get_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#get_accounting_account) - Retrieve an account
|
|
148
|
+
* [list_accounting_accounts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#list_accounting_accounts) - List all accounts
|
|
149
|
+
* [patch_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#patch_accounting_account) - Update an account
|
|
150
|
+
* [remove_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#remove_accounting_account) - Remove an account
|
|
151
|
+
* [update_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#update_accounting_account) - Update an account
|
|
152
|
+
|
|
153
|
+
### [accounting](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md)
|
|
154
|
+
|
|
155
|
+
* [create_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_account) - Create an account
|
|
156
|
+
* [create_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_contact) - Create a contact
|
|
157
|
+
* [create_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_invoice) - Create an invoice
|
|
158
|
+
* [create_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_journal) - Create a journal
|
|
159
|
+
* [create_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_order) - Create an order
|
|
160
|
+
* [create_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_taxrate) - Create a taxrate
|
|
161
|
+
* [create_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_transaction) - Create a transaction
|
|
162
|
+
* [get_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_account) - Retrieve an account
|
|
163
|
+
* [get_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_contact) - Retrieve a contact
|
|
164
|
+
* [get_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_invoice) - Retrieve an invoice
|
|
165
|
+
* [get_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_journal) - Retrieve a journal
|
|
166
|
+
* [get_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_order) - Retrieve an order
|
|
167
|
+
* [get_accounting_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_organization) - Retrieve an organization
|
|
168
|
+
* [get_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_taxrate) - Retrieve a taxrate
|
|
169
|
+
* [get_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_transaction) - Retrieve a transaction
|
|
170
|
+
* [list_accounting_accounts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_accounts) - List all accounts
|
|
171
|
+
* [list_accounting_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_contacts) - List all contacts
|
|
172
|
+
* [list_accounting_invoices](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_invoices) - List all invoices
|
|
173
|
+
* [list_accounting_journals](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_journals) - List all journals
|
|
174
|
+
* [list_accounting_orders](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_orders) - List all orders
|
|
175
|
+
* [list_accounting_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_organizations) - List all organizations
|
|
176
|
+
* [list_accounting_taxrates](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_taxrates) - List all taxrates
|
|
177
|
+
* [list_accounting_transactions](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_transactions) - List all transactions
|
|
178
|
+
* [patch_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_account) - Update an account
|
|
179
|
+
* [patch_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_contact) - Update a contact
|
|
180
|
+
* [patch_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_invoice) - Update an invoice
|
|
181
|
+
* [patch_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_journal) - Update a journal
|
|
182
|
+
* [patch_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_order) - Update an order
|
|
183
|
+
* [patch_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_taxrate) - Update a taxrate
|
|
184
|
+
* [patch_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_transaction) - Update a transaction
|
|
185
|
+
* [remove_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_account) - Remove an account
|
|
186
|
+
* [remove_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_contact) - Remove a contact
|
|
187
|
+
* [remove_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_invoice) - Remove an invoice
|
|
188
|
+
* [remove_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_journal) - Remove a journal
|
|
189
|
+
* [remove_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_order) - Remove an order
|
|
190
|
+
* [remove_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_taxrate) - Remove a taxrate
|
|
191
|
+
* [remove_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_transaction) - Remove a transaction
|
|
192
|
+
* [update_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_account) - Update an account
|
|
193
|
+
* [update_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_contact) - Update a contact
|
|
194
|
+
* [update_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_invoice) - Update an invoice
|
|
195
|
+
* [update_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_journal) - Update a journal
|
|
196
|
+
* [update_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_order) - Update an order
|
|
197
|
+
* [update_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_taxrate) - Update a taxrate
|
|
198
|
+
* [update_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_transaction) - Update a transaction
|
|
199
|
+
|
|
200
|
+
### [activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md)
|
|
201
|
+
|
|
202
|
+
* [create_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#create_ats_activity) - Create an activity
|
|
203
|
+
* [get_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#get_ats_activity) - Retrieve an activity
|
|
204
|
+
* [list_ats_activities](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#list_ats_activities) - List all activities
|
|
205
|
+
* [patch_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#patch_ats_activity) - Update an activity
|
|
206
|
+
* [remove_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#remove_ats_activity) - Remove an activity
|
|
207
|
+
* [update_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#update_ats_activity) - Update an activity
|
|
208
|
+
|
|
209
|
+
### [apicall](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/apicall/README.md)
|
|
210
|
+
|
|
211
|
+
* [get_unified_apicall](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/apicall/README.md#get_unified_apicall) - Retrieve specific API Call by its ID
|
|
212
|
+
* [list_unified_apicalls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/apicall/README.md#list_unified_apicalls) - Returns API Calls
|
|
213
|
+
|
|
214
|
+
### [application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md)
|
|
215
|
+
|
|
216
|
+
* [create_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#create_ats_application) - Create an application
|
|
217
|
+
* [get_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#get_ats_application) - Retrieve an application
|
|
218
|
+
* [list_ats_applications](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#list_ats_applications) - List all applications
|
|
219
|
+
* [patch_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#patch_ats_application) - Update an application
|
|
220
|
+
* [remove_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#remove_ats_application) - Remove an application
|
|
221
|
+
* [update_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#update_ats_application) - Update an application
|
|
222
|
+
|
|
223
|
+
### [applicationstatus](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/applicationstatus/README.md)
|
|
224
|
+
|
|
225
|
+
* [list_ats_applicationstatuses](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/applicationstatus/README.md#list_ats_applicationstatuses) - List all applicationstatuses
|
|
226
|
+
|
|
227
|
+
### [ats](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md)
|
|
228
|
+
|
|
229
|
+
* [create_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_activity) - Create an activity
|
|
230
|
+
* [create_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_application) - Create an application
|
|
231
|
+
* [create_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_candidate) - Create a candidate
|
|
232
|
+
* [create_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_document) - Create a document
|
|
233
|
+
* [create_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_interview) - Create an interview
|
|
234
|
+
* [create_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_job) - Create a job
|
|
235
|
+
* [create_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_scorecard) - Create a scorecard
|
|
236
|
+
* [get_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_activity) - Retrieve an activity
|
|
237
|
+
* [get_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_application) - Retrieve an application
|
|
238
|
+
* [get_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_candidate) - Retrieve a candidate
|
|
239
|
+
* [get_ats_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_company) - Retrieve a company
|
|
240
|
+
* [get_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_document) - Retrieve a document
|
|
241
|
+
* [get_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_interview) - Retrieve an interview
|
|
242
|
+
* [get_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_job) - Retrieve a job
|
|
243
|
+
* [get_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_scorecard) - Retrieve a scorecard
|
|
244
|
+
* [list_ats_activities](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_activities) - List all activities
|
|
245
|
+
* [list_ats_applications](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_applications) - List all applications
|
|
246
|
+
* [list_ats_applicationstatuses](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_applicationstatuses) - List all applicationstatuses
|
|
247
|
+
* [list_ats_candidates](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_candidates) - List all candidates
|
|
248
|
+
* [list_ats_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_companies) - List all companies
|
|
249
|
+
* [list_ats_documents](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_documents) - List all documents
|
|
250
|
+
* [list_ats_interviews](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_interviews) - List all interviews
|
|
251
|
+
* [list_ats_jobs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_jobs) - List all jobs
|
|
252
|
+
* [list_ats_scorecards](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_scorecards) - List all scorecards
|
|
253
|
+
* [patch_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_activity) - Update an activity
|
|
254
|
+
* [patch_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_application) - Update an application
|
|
255
|
+
* [patch_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_candidate) - Update a candidate
|
|
256
|
+
* [patch_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_document) - Update a document
|
|
257
|
+
* [patch_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_interview) - Update an interview
|
|
258
|
+
* [patch_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_job) - Update a job
|
|
259
|
+
* [patch_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_scorecard) - Update a scorecard
|
|
260
|
+
* [remove_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_activity) - Remove an activity
|
|
261
|
+
* [remove_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_application) - Remove an application
|
|
262
|
+
* [remove_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_candidate) - Remove a candidate
|
|
263
|
+
* [remove_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_document) - Remove a document
|
|
264
|
+
* [remove_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_interview) - Remove an interview
|
|
265
|
+
* [remove_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_job) - Remove a job
|
|
266
|
+
* [remove_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_scorecard) - Remove a scorecard
|
|
267
|
+
* [update_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_activity) - Update an activity
|
|
268
|
+
* [update_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_application) - Update an application
|
|
269
|
+
* [update_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_candidate) - Update a candidate
|
|
270
|
+
* [update_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_document) - Update a document
|
|
271
|
+
* [update_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_interview) - Update an interview
|
|
272
|
+
* [update_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_job) - Update a job
|
|
273
|
+
* [update_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_scorecard) - Update a scorecard
|
|
274
|
+
|
|
275
|
+
### [auth](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/auth/README.md)
|
|
276
|
+
|
|
277
|
+
* [get_unified_integration_auth](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/auth/README.md#get_unified_integration_auth) - Create connection indirectly
|
|
278
|
+
* [get_unified_integration_login](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/auth/README.md#get_unified_integration_login) - Sign in a user
|
|
279
|
+
|
|
280
|
+
### [branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md)
|
|
281
|
+
|
|
282
|
+
* [create_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#create_repo_branch) - Create a branch
|
|
283
|
+
* [get_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#get_repo_branch) - Retrieve a branch
|
|
284
|
+
* [list_repo_branches](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#list_repo_branches) - List all branches
|
|
285
|
+
* [patch_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#patch_repo_branch) - Update a branch
|
|
286
|
+
* [remove_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#remove_repo_branch) - Remove a branch
|
|
287
|
+
* [update_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#update_repo_branch) - Update a branch
|
|
288
|
+
|
|
289
|
+
### [call](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/call/README.md)
|
|
290
|
+
|
|
291
|
+
* [list_uc_calls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/call/README.md#list_uc_calls) - List all calls
|
|
292
|
+
|
|
293
|
+
### [candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md)
|
|
294
|
+
|
|
295
|
+
* [create_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#create_ats_candidate) - Create a candidate
|
|
296
|
+
* [get_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#get_ats_candidate) - Retrieve a candidate
|
|
297
|
+
* [list_ats_candidates](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#list_ats_candidates) - List all candidates
|
|
298
|
+
* [patch_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#patch_ats_candidate) - Update a candidate
|
|
299
|
+
* [remove_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#remove_ats_candidate) - Remove a candidate
|
|
300
|
+
* [update_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#update_ats_candidate) - Update a candidate
|
|
301
|
+
|
|
302
|
+
### [channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md)
|
|
303
|
+
|
|
304
|
+
* [get_messaging_channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md#get_messaging_channel) - Retrieve a channel
|
|
305
|
+
* [list_messaging_channels](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md#list_messaging_channels) - List all channels
|
|
306
|
+
|
|
307
|
+
### [class_](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md)
|
|
308
|
+
|
|
309
|
+
* [create_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#create_lms_class) - Create a class
|
|
310
|
+
* [get_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#get_lms_class) - Retrieve a class
|
|
311
|
+
* [list_lms_classes](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#list_lms_classes) - List all classes
|
|
312
|
+
* [patch_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#patch_lms_class) - Update a class
|
|
313
|
+
* [remove_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#remove_lms_class) - Remove a class
|
|
314
|
+
* [update_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#update_lms_class) - Update a class
|
|
315
|
+
|
|
316
|
+
### [collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md)
|
|
317
|
+
|
|
318
|
+
* [create_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#create_commerce_collection) - Create a collection
|
|
319
|
+
* [get_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#get_commerce_collection) - Retrieve a collection
|
|
320
|
+
* [list_commerce_collections](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#list_commerce_collections) - List all collections
|
|
321
|
+
* [patch_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#patch_commerce_collection) - Update a collection
|
|
322
|
+
* [remove_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#remove_commerce_collection) - Remove a collection
|
|
323
|
+
* [update_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#update_commerce_collection) - Update a collection
|
|
324
|
+
|
|
325
|
+
### [comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md)
|
|
326
|
+
|
|
327
|
+
* [create_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#create_kms_comment) - Create a comment
|
|
328
|
+
* [create_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#create_task_comment) - Create a comment
|
|
329
|
+
* [get_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#get_kms_comment) - Retrieve a comment
|
|
330
|
+
* [get_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#get_task_comment) - Retrieve a comment
|
|
331
|
+
* [list_kms_comments](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#list_kms_comments) - List all comments
|
|
332
|
+
* [list_task_comments](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#list_task_comments) - List all comments
|
|
333
|
+
* [patch_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#patch_kms_comment) - Update a comment
|
|
334
|
+
* [patch_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#patch_task_comment) - Update a comment
|
|
335
|
+
* [remove_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#remove_kms_comment) - Remove a comment
|
|
336
|
+
* [remove_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#remove_task_comment) - Remove a comment
|
|
337
|
+
* [update_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#update_kms_comment) - Update a comment
|
|
338
|
+
* [update_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#update_task_comment) - Update a comment
|
|
339
|
+
|
|
340
|
+
### [commerce](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md)
|
|
341
|
+
|
|
342
|
+
* [create_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#create_commerce_collection) - Create a collection
|
|
343
|
+
* [create_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#create_commerce_inventory) - Create an inventory
|
|
344
|
+
* [create_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#create_commerce_item) - Create an item
|
|
345
|
+
* [create_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#create_commerce_location) - Create a location
|
|
346
|
+
* [get_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#get_commerce_collection) - Retrieve a collection
|
|
347
|
+
* [get_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
348
|
+
* [get_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#get_commerce_item) - Retrieve an item
|
|
349
|
+
* [get_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#get_commerce_location) - Retrieve a location
|
|
350
|
+
* [list_commerce_collections](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#list_commerce_collections) - List all collections
|
|
351
|
+
* [list_commerce_inventories](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#list_commerce_inventories) - List all inventories
|
|
352
|
+
* [list_commerce_items](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#list_commerce_items) - List all items
|
|
353
|
+
* [list_commerce_locations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#list_commerce_locations) - List all locations
|
|
354
|
+
* [patch_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#patch_commerce_collection) - Update a collection
|
|
355
|
+
* [patch_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#patch_commerce_inventory) - Update an inventory
|
|
356
|
+
* [patch_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#patch_commerce_item) - Update an item
|
|
357
|
+
* [patch_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#patch_commerce_location) - Update a location
|
|
358
|
+
* [remove_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#remove_commerce_collection) - Remove a collection
|
|
359
|
+
* [remove_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#remove_commerce_inventory) - Remove an inventory
|
|
360
|
+
* [remove_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#remove_commerce_item) - Remove an item
|
|
361
|
+
* [remove_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#remove_commerce_location) - Remove a location
|
|
362
|
+
* [update_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_collection) - Update a collection
|
|
363
|
+
* [update_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_inventory) - Update an inventory
|
|
364
|
+
* [update_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_item) - Update an item
|
|
365
|
+
* [update_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_location) - Update a location
|
|
366
|
+
|
|
367
|
+
### [commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md)
|
|
368
|
+
|
|
369
|
+
* [create_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#create_repo_commit) - Create a commit
|
|
370
|
+
* [get_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#get_repo_commit) - Retrieve a commit
|
|
371
|
+
* [list_repo_commits](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#list_repo_commits) - List all commits
|
|
372
|
+
* [patch_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#patch_repo_commit) - Update a commit
|
|
373
|
+
* [remove_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#remove_repo_commit) - Remove a commit
|
|
374
|
+
* [update_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#update_repo_commit) - Update a commit
|
|
375
|
+
|
|
376
|
+
### [company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md)
|
|
377
|
+
|
|
378
|
+
* [create_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#create_crm_company) - Create a company
|
|
379
|
+
* [create_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#create_hris_company) - Create a company
|
|
380
|
+
* [get_ats_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#get_ats_company) - Retrieve a company
|
|
381
|
+
* [get_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#get_crm_company) - Retrieve a company
|
|
382
|
+
* [get_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#get_hris_company) - Retrieve a company
|
|
383
|
+
* [list_ats_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#list_ats_companies) - List all companies
|
|
384
|
+
* [list_crm_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#list_crm_companies) - List all companies
|
|
385
|
+
* [list_enrich_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#list_enrich_companies) - Retrieve enrichment information for a company
|
|
386
|
+
* [list_hris_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#list_hris_companies) - List all companies
|
|
387
|
+
* [patch_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#patch_crm_company) - Update a company
|
|
388
|
+
* [patch_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#patch_hris_company) - Update a company
|
|
389
|
+
* [remove_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#remove_crm_company) - Remove a company
|
|
390
|
+
* [remove_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#remove_hris_company) - Remove a company
|
|
391
|
+
* [update_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#update_crm_company) - Update a company
|
|
392
|
+
* [update_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#update_hris_company) - Update a company
|
|
393
|
+
|
|
394
|
+
### [connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md)
|
|
395
|
+
|
|
396
|
+
* [create_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#create_unified_connection) - Create connection
|
|
397
|
+
* [get_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#get_unified_connection) - Retrieve connection
|
|
398
|
+
* [list_unified_connections](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#list_unified_connections) - List all connections
|
|
399
|
+
* [patch_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#patch_unified_connection) - Update connection
|
|
400
|
+
* [remove_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#remove_unified_connection) - Remove connection
|
|
401
|
+
* [update_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#update_unified_connection) - Update connection
|
|
402
|
+
|
|
403
|
+
### [contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md)
|
|
404
|
+
|
|
405
|
+
* [create_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#create_accounting_contact) - Create a contact
|
|
406
|
+
* [create_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#create_crm_contact) - Create a contact
|
|
407
|
+
* [create_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#create_uc_contact) - Create a contact
|
|
408
|
+
* [get_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#get_accounting_contact) - Retrieve a contact
|
|
409
|
+
* [get_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#get_crm_contact) - Retrieve a contact
|
|
410
|
+
* [get_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#get_uc_contact) - Retrieve a contact
|
|
411
|
+
* [list_accounting_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#list_accounting_contacts) - List all contacts
|
|
412
|
+
* [list_crm_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#list_crm_contacts) - List all contacts
|
|
413
|
+
* [list_uc_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#list_uc_contacts) - List all contacts
|
|
414
|
+
* [patch_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#patch_accounting_contact) - Update a contact
|
|
415
|
+
* [patch_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#patch_crm_contact) - Update a contact
|
|
416
|
+
* [patch_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#patch_uc_contact) - Update a contact
|
|
417
|
+
* [remove_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#remove_accounting_contact) - Remove a contact
|
|
418
|
+
* [remove_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#remove_crm_contact) - Remove a contact
|
|
419
|
+
* [remove_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#remove_uc_contact) - Remove a contact
|
|
420
|
+
* [update_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#update_accounting_contact) - Update a contact
|
|
421
|
+
* [update_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#update_crm_contact) - Update a contact
|
|
422
|
+
* [update_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#update_uc_contact) - Update a contact
|
|
423
|
+
|
|
424
|
+
### [course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md)
|
|
425
|
+
|
|
426
|
+
* [create_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#create_lms_course) - Create a course
|
|
427
|
+
* [get_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#get_lms_course) - Retrieve a course
|
|
428
|
+
* [list_lms_courses](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#list_lms_courses) - List all courses
|
|
429
|
+
* [patch_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#patch_lms_course) - Update a course
|
|
430
|
+
* [remove_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#remove_lms_course) - Remove a course
|
|
431
|
+
* [update_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#update_lms_course) - Update a course
|
|
432
|
+
|
|
433
|
+
### [crm](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md)
|
|
434
|
+
|
|
435
|
+
* [create_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_company) - Create a company
|
|
436
|
+
* [create_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_contact) - Create a contact
|
|
437
|
+
* [create_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_deal) - Create a deal
|
|
438
|
+
* [create_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_event) - Create an event
|
|
439
|
+
* [create_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_lead) - Create a lead
|
|
440
|
+
* [create_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_pipeline) - Create a pipeline
|
|
441
|
+
* [get_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_company) - Retrieve a company
|
|
442
|
+
* [get_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_contact) - Retrieve a contact
|
|
443
|
+
* [get_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_deal) - Retrieve a deal
|
|
444
|
+
* [get_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_event) - Retrieve an event
|
|
445
|
+
* [get_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_lead) - Retrieve a lead
|
|
446
|
+
* [get_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_pipeline) - Retrieve a pipeline
|
|
447
|
+
* [list_crm_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_companies) - List all companies
|
|
448
|
+
* [list_crm_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_contacts) - List all contacts
|
|
449
|
+
* [list_crm_deals](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_deals) - List all deals
|
|
450
|
+
* [list_crm_events](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_events) - List all events
|
|
451
|
+
* [list_crm_leads](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_leads) - List all leads
|
|
452
|
+
* [list_crm_pipelines](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_pipelines) - List all pipelines
|
|
453
|
+
* [patch_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_company) - Update a company
|
|
454
|
+
* [patch_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_contact) - Update a contact
|
|
455
|
+
* [patch_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_deal) - Update a deal
|
|
456
|
+
* [patch_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_event) - Update an event
|
|
457
|
+
* [patch_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_lead) - Update a lead
|
|
458
|
+
* [patch_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_pipeline) - Update a pipeline
|
|
459
|
+
* [remove_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_company) - Remove a company
|
|
460
|
+
* [remove_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_contact) - Remove a contact
|
|
461
|
+
* [remove_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_deal) - Remove a deal
|
|
462
|
+
* [remove_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_event) - Remove an event
|
|
463
|
+
* [remove_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_lead) - Remove a lead
|
|
464
|
+
* [remove_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_pipeline) - Remove a pipeline
|
|
465
|
+
* [update_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_company) - Update a company
|
|
466
|
+
* [update_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_contact) - Update a contact
|
|
467
|
+
* [update_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_deal) - Update a deal
|
|
468
|
+
* [update_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_event) - Update an event
|
|
469
|
+
* [update_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_lead) - Update a lead
|
|
470
|
+
* [update_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_pipeline) - Update a pipeline
|
|
471
|
+
|
|
472
|
+
### [customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md)
|
|
473
|
+
|
|
474
|
+
* [create_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#create_ticketing_customer) - Create a customer
|
|
475
|
+
* [get_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#get_ticketing_customer) - Retrieve a customer
|
|
476
|
+
* [list_ticketing_customers](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#list_ticketing_customers) - List all customers
|
|
477
|
+
* [patch_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#patch_ticketing_customer) - Update a customer
|
|
478
|
+
* [remove_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#remove_ticketing_customer) - Remove a customer
|
|
479
|
+
* [update_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#update_ticketing_customer) - Update a customer
|
|
480
|
+
|
|
481
|
+
### [deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md)
|
|
482
|
+
|
|
483
|
+
* [create_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#create_crm_deal) - Create a deal
|
|
484
|
+
* [get_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#get_crm_deal) - Retrieve a deal
|
|
485
|
+
* [list_crm_deals](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#list_crm_deals) - List all deals
|
|
486
|
+
* [patch_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#patch_crm_deal) - Update a deal
|
|
487
|
+
* [remove_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#remove_crm_deal) - Remove a deal
|
|
488
|
+
* [update_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#update_crm_deal) - Update a deal
|
|
489
|
+
|
|
490
|
+
### [document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md)
|
|
491
|
+
|
|
492
|
+
* [create_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#create_ats_document) - Create a document
|
|
493
|
+
* [get_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#get_ats_document) - Retrieve a document
|
|
494
|
+
* [list_ats_documents](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#list_ats_documents) - List all documents
|
|
495
|
+
* [patch_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#patch_ats_document) - Update a document
|
|
496
|
+
* [remove_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#remove_ats_document) - Remove a document
|
|
497
|
+
* [update_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#update_ats_document) - Update a document
|
|
498
|
+
|
|
499
|
+
### [employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md)
|
|
500
|
+
|
|
501
|
+
* [create_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#create_hris_employee) - Create an employee
|
|
502
|
+
* [get_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#get_hris_employee) - Retrieve an employee
|
|
503
|
+
* [list_hris_employees](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#list_hris_employees) - List all employees
|
|
504
|
+
* [patch_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#patch_hris_employee) - Update an employee
|
|
505
|
+
* [remove_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#remove_hris_employee) - Remove an employee
|
|
506
|
+
* [update_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#update_hris_employee) - Update an employee
|
|
507
|
+
|
|
508
|
+
### [enrich](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/enrich/README.md)
|
|
509
|
+
|
|
510
|
+
* [list_enrich_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/enrich/README.md#list_enrich_companies) - Retrieve enrichment information for a company
|
|
511
|
+
* [list_enrich_people](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/enrich/README.md#list_enrich_people) - Retrieve enrichment information for a person
|
|
512
|
+
|
|
513
|
+
### [event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md)
|
|
514
|
+
|
|
515
|
+
* [create_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#create_crm_event) - Create an event
|
|
516
|
+
* [get_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#get_crm_event) - Retrieve an event
|
|
517
|
+
* [list_crm_events](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#list_crm_events) - List all events
|
|
518
|
+
* [patch_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#patch_crm_event) - Update an event
|
|
519
|
+
* [remove_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#remove_crm_event) - Remove an event
|
|
520
|
+
* [update_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#update_crm_event) - Update an event
|
|
521
|
+
|
|
522
|
+
### [file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md)
|
|
523
|
+
|
|
524
|
+
* [create_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#create_storage_file) - Create a file
|
|
525
|
+
* [get_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#get_storage_file) - Retrieve a file
|
|
526
|
+
* [list_storage_files](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#list_storage_files) - List all files
|
|
527
|
+
* [patch_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#patch_storage_file) - Update a file
|
|
528
|
+
* [remove_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#remove_storage_file) - Remove a file
|
|
529
|
+
* [update_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#update_storage_file) - Update a file
|
|
530
|
+
|
|
531
|
+
### [genai](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/genai/README.md)
|
|
532
|
+
|
|
533
|
+
* [create_genai_prompt](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/genai/README.md#create_genai_prompt) - Create a prompt
|
|
534
|
+
* [list_genai_models](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/genai/README.md#list_genai_models) - List all models
|
|
535
|
+
|
|
536
|
+
### [group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md)
|
|
537
|
+
|
|
538
|
+
* [create_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#create_hris_group) - Create a group
|
|
539
|
+
* [create_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#create_scim_groups) - Create group
|
|
540
|
+
* [get_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#get_hris_group) - Retrieve a group
|
|
541
|
+
* [get_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#get_scim_groups) - Get group
|
|
542
|
+
* [list_hris_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#list_hris_groups) - List all groups
|
|
543
|
+
* [list_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#list_scim_groups) - List groups
|
|
544
|
+
* [patch_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#patch_hris_group) - Update a group
|
|
545
|
+
* [patch_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#patch_scim_groups) - Update group
|
|
546
|
+
* [remove_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#remove_hris_group) - Remove a group
|
|
547
|
+
* [remove_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#remove_scim_groups) - Delete group
|
|
548
|
+
* [update_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#update_hris_group) - Update a group
|
|
549
|
+
* [update_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#update_scim_groups) - Update group
|
|
550
|
+
|
|
551
|
+
### [hris](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md)
|
|
552
|
+
|
|
553
|
+
* [create_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#create_hris_company) - Create a company
|
|
554
|
+
* [create_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#create_hris_employee) - Create an employee
|
|
555
|
+
* [create_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#create_hris_group) - Create a group
|
|
556
|
+
* [create_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#create_hris_location) - Create a location
|
|
557
|
+
* [get_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_company) - Retrieve a company
|
|
558
|
+
* [get_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_employee) - Retrieve an employee
|
|
559
|
+
* [get_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_group) - Retrieve a group
|
|
560
|
+
* [get_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_location) - Retrieve a location
|
|
561
|
+
* [get_hris_payslip](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_payslip) - Retrieve a payslip
|
|
562
|
+
* [get_hris_timeoff](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_timeoff) - Retrieve a timeoff
|
|
563
|
+
* [list_hris_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_companies) - List all companies
|
|
564
|
+
* [list_hris_employees](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_employees) - List all employees
|
|
565
|
+
* [list_hris_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_groups) - List all groups
|
|
566
|
+
* [list_hris_locations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_locations) - List all locations
|
|
567
|
+
* [list_hris_payslips](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_payslips) - List all payslips
|
|
568
|
+
* [list_hris_timeoffs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_timeoffs) - List all timeoffs
|
|
569
|
+
* [patch_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#patch_hris_company) - Update a company
|
|
570
|
+
* [patch_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#patch_hris_employee) - Update an employee
|
|
571
|
+
* [patch_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#patch_hris_group) - Update a group
|
|
572
|
+
* [patch_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#patch_hris_location) - Update a location
|
|
573
|
+
* [remove_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#remove_hris_company) - Remove a company
|
|
574
|
+
* [remove_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#remove_hris_employee) - Remove an employee
|
|
575
|
+
* [remove_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#remove_hris_group) - Remove a group
|
|
576
|
+
* [remove_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#remove_hris_location) - Remove a location
|
|
577
|
+
* [update_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_company) - Update a company
|
|
578
|
+
* [update_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_employee) - Update an employee
|
|
579
|
+
* [update_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_group) - Update a group
|
|
580
|
+
* [update_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_location) - Update a location
|
|
581
|
+
|
|
582
|
+
### [instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md)
|
|
583
|
+
|
|
584
|
+
* [create_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#create_lms_instructor) - Create an instructor
|
|
585
|
+
* [get_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#get_lms_instructor) - Retrieve an instructor
|
|
586
|
+
* [list_lms_instructors](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#list_lms_instructors) - List all instructors
|
|
587
|
+
* [patch_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#patch_lms_instructor) - Update an instructor
|
|
588
|
+
* [remove_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#remove_lms_instructor) - Remove an instructor
|
|
589
|
+
* [update_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#update_lms_instructor) - Update an instructor
|
|
590
|
+
|
|
591
|
+
### [integration](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/integration/README.md)
|
|
592
|
+
|
|
593
|
+
* [get_unified_integration_auth](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/integration/README.md#get_unified_integration_auth) - Create connection indirectly
|
|
594
|
+
* [list_unified_integration_workspaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/integration/README.md#list_unified_integration_workspaces) - Returns all activated integrations in a workspace
|
|
595
|
+
* [list_unified_integrations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/integration/README.md#list_unified_integrations) - Returns all integrations
|
|
596
|
+
|
|
597
|
+
### [interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md)
|
|
598
|
+
|
|
599
|
+
* [create_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#create_ats_interview) - Create an interview
|
|
600
|
+
* [get_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#get_ats_interview) - Retrieve an interview
|
|
601
|
+
* [list_ats_interviews](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#list_ats_interviews) - List all interviews
|
|
602
|
+
* [patch_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#patch_ats_interview) - Update an interview
|
|
603
|
+
* [remove_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#remove_ats_interview) - Remove an interview
|
|
604
|
+
* [update_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#update_ats_interview) - Update an interview
|
|
605
|
+
|
|
606
|
+
### [inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md)
|
|
607
|
+
|
|
608
|
+
* [create_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#create_commerce_inventory) - Create an inventory
|
|
609
|
+
* [get_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#get_commerce_inventory) - Retrieve an inventory
|
|
610
|
+
* [list_commerce_inventories](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#list_commerce_inventories) - List all inventories
|
|
611
|
+
* [patch_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#patch_commerce_inventory) - Update an inventory
|
|
612
|
+
* [remove_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#remove_commerce_inventory) - Remove an inventory
|
|
613
|
+
* [update_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#update_commerce_inventory) - Update an inventory
|
|
614
|
+
|
|
615
|
+
### [invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md)
|
|
616
|
+
|
|
617
|
+
* [create_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#create_accounting_invoice) - Create an invoice
|
|
618
|
+
* [get_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#get_accounting_invoice) - Retrieve an invoice
|
|
619
|
+
* [list_accounting_invoices](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#list_accounting_invoices) - List all invoices
|
|
620
|
+
* [patch_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#patch_accounting_invoice) - Update an invoice
|
|
621
|
+
* [remove_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#remove_accounting_invoice) - Remove an invoice
|
|
622
|
+
* [update_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#update_accounting_invoice) - Update an invoice
|
|
623
|
+
|
|
624
|
+
### [issue](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/issue/README.md)
|
|
625
|
+
|
|
626
|
+
* [list_unified_issues](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/issue/README.md#list_unified_issues) - List support issues
|
|
627
|
+
|
|
628
|
+
### [item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md)
|
|
629
|
+
|
|
630
|
+
* [create_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#create_commerce_item) - Create an item
|
|
631
|
+
* [get_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#get_commerce_item) - Retrieve an item
|
|
632
|
+
* [list_commerce_items](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#list_commerce_items) - List all items
|
|
633
|
+
* [patch_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#patch_commerce_item) - Update an item
|
|
634
|
+
* [remove_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#remove_commerce_item) - Remove an item
|
|
635
|
+
* [update_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#update_commerce_item) - Update an item
|
|
636
|
+
|
|
637
|
+
### [job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md)
|
|
638
|
+
|
|
639
|
+
* [create_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#create_ats_job) - Create a job
|
|
640
|
+
* [get_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#get_ats_job) - Retrieve a job
|
|
641
|
+
* [list_ats_jobs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#list_ats_jobs) - List all jobs
|
|
642
|
+
* [patch_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#patch_ats_job) - Update a job
|
|
643
|
+
* [remove_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#remove_ats_job) - Remove a job
|
|
644
|
+
* [update_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#update_ats_job) - Update a job
|
|
645
|
+
|
|
646
|
+
### [journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md)
|
|
647
|
+
|
|
648
|
+
* [create_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#create_accounting_journal) - Create a journal
|
|
649
|
+
* [get_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#get_accounting_journal) - Retrieve a journal
|
|
650
|
+
* [list_accounting_journals](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#list_accounting_journals) - List all journals
|
|
651
|
+
* [patch_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#patch_accounting_journal) - Update a journal
|
|
652
|
+
* [remove_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#remove_accounting_journal) - Remove a journal
|
|
653
|
+
* [update_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#update_accounting_journal) - Update a journal
|
|
654
|
+
|
|
655
|
+
### [kms](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md)
|
|
656
|
+
|
|
657
|
+
* [create_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#create_kms_comment) - Create a comment
|
|
658
|
+
* [create_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#create_kms_page) - Create a page
|
|
659
|
+
* [create_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#create_kms_space) - Create a space
|
|
660
|
+
* [get_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#get_kms_comment) - Retrieve a comment
|
|
661
|
+
* [get_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#get_kms_page) - Retrieve a page
|
|
662
|
+
* [get_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#get_kms_space) - Retrieve a space
|
|
663
|
+
* [list_kms_comments](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#list_kms_comments) - List all comments
|
|
664
|
+
* [list_kms_pages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#list_kms_pages) - List all pages
|
|
665
|
+
* [list_kms_spaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#list_kms_spaces) - List all spaces
|
|
666
|
+
* [patch_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#patch_kms_comment) - Update a comment
|
|
667
|
+
* [patch_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#patch_kms_page) - Update a page
|
|
668
|
+
* [patch_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#patch_kms_space) - Update a space
|
|
669
|
+
* [remove_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#remove_kms_comment) - Remove a comment
|
|
670
|
+
* [remove_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#remove_kms_page) - Remove a page
|
|
671
|
+
* [remove_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#remove_kms_space) - Remove a space
|
|
672
|
+
* [update_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#update_kms_comment) - Update a comment
|
|
673
|
+
* [update_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#update_kms_page) - Update a page
|
|
674
|
+
* [update_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#update_kms_space) - Update a space
|
|
675
|
+
|
|
676
|
+
### [lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md)
|
|
677
|
+
|
|
678
|
+
* [create_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#create_crm_lead) - Create a lead
|
|
679
|
+
* [get_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#get_crm_lead) - Retrieve a lead
|
|
680
|
+
* [list_crm_leads](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#list_crm_leads) - List all leads
|
|
681
|
+
* [patch_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#patch_crm_lead) - Update a lead
|
|
682
|
+
* [remove_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#remove_crm_lead) - Remove a lead
|
|
683
|
+
* [update_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#update_crm_lead) - Update a lead
|
|
684
|
+
|
|
685
|
+
### [link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md)
|
|
686
|
+
|
|
687
|
+
* [create_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#create_payment_link) - Create a link
|
|
688
|
+
* [get_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#get_payment_link) - Retrieve a link
|
|
689
|
+
* [list_payment_links](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#list_payment_links) - List all links
|
|
690
|
+
* [patch_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#patch_payment_link) - Update a link
|
|
691
|
+
* [remove_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#remove_payment_link) - Remove a link
|
|
692
|
+
* [update_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#update_payment_link) - Update a link
|
|
693
|
+
|
|
694
|
+
### [list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md)
|
|
695
|
+
|
|
696
|
+
* [create_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#create_martech_list) - Create a list
|
|
697
|
+
* [get_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#get_martech_list) - Retrieve a list
|
|
698
|
+
* [list_martech_lists](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#list_martech_lists) - List all lists
|
|
699
|
+
* [patch_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#patch_martech_list) - Update a list
|
|
700
|
+
* [remove_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#remove_martech_list) - Remove a list
|
|
701
|
+
* [update_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#update_martech_list) - Update a list
|
|
702
|
+
|
|
703
|
+
### [lms](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md)
|
|
704
|
+
|
|
705
|
+
* [create_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#create_lms_class) - Create a class
|
|
706
|
+
* [create_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#create_lms_course) - Create a course
|
|
707
|
+
* [create_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#create_lms_instructor) - Create an instructor
|
|
708
|
+
* [create_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#create_lms_student) - Create a student
|
|
709
|
+
* [get_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#get_lms_class) - Retrieve a class
|
|
710
|
+
* [get_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#get_lms_course) - Retrieve a course
|
|
711
|
+
* [get_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#get_lms_instructor) - Retrieve an instructor
|
|
712
|
+
* [get_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#get_lms_student) - Retrieve a student
|
|
713
|
+
* [list_lms_classes](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#list_lms_classes) - List all classes
|
|
714
|
+
* [list_lms_courses](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#list_lms_courses) - List all courses
|
|
715
|
+
* [list_lms_instructors](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#list_lms_instructors) - List all instructors
|
|
716
|
+
* [list_lms_students](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#list_lms_students) - List all students
|
|
717
|
+
* [patch_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#patch_lms_class) - Update a class
|
|
718
|
+
* [patch_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#patch_lms_course) - Update a course
|
|
719
|
+
* [patch_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#patch_lms_instructor) - Update an instructor
|
|
720
|
+
* [patch_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#patch_lms_student) - Update a student
|
|
721
|
+
* [remove_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#remove_lms_class) - Remove a class
|
|
722
|
+
* [remove_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#remove_lms_course) - Remove a course
|
|
723
|
+
* [remove_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#remove_lms_instructor) - Remove an instructor
|
|
724
|
+
* [remove_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#remove_lms_student) - Remove a student
|
|
725
|
+
* [update_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#update_lms_class) - Update a class
|
|
726
|
+
* [update_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#update_lms_course) - Update a course
|
|
727
|
+
* [update_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#update_lms_instructor) - Update an instructor
|
|
728
|
+
* [update_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#update_lms_student) - Update a student
|
|
729
|
+
|
|
730
|
+
### [location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md)
|
|
731
|
+
|
|
732
|
+
* [create_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#create_commerce_location) - Create a location
|
|
733
|
+
* [create_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#create_hris_location) - Create a location
|
|
734
|
+
* [get_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#get_commerce_location) - Retrieve a location
|
|
735
|
+
* [get_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#get_hris_location) - Retrieve a location
|
|
736
|
+
* [list_commerce_locations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#list_commerce_locations) - List all locations
|
|
737
|
+
* [list_hris_locations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#list_hris_locations) - List all locations
|
|
738
|
+
* [patch_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#patch_commerce_location) - Update a location
|
|
739
|
+
* [patch_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#patch_hris_location) - Update a location
|
|
740
|
+
* [remove_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#remove_commerce_location) - Remove a location
|
|
741
|
+
* [remove_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#remove_hris_location) - Remove a location
|
|
742
|
+
* [update_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#update_commerce_location) - Update a location
|
|
743
|
+
* [update_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#update_hris_location) - Update a location
|
|
744
|
+
|
|
745
|
+
### [login](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/login/README.md)
|
|
746
|
+
|
|
747
|
+
* [get_unified_integration_login](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/login/README.md#get_unified_integration_login) - Sign in a user
|
|
748
|
+
|
|
749
|
+
### [martech](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md)
|
|
750
|
+
|
|
751
|
+
* [create_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#create_martech_list) - Create a list
|
|
752
|
+
* [create_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#create_martech_member) - Create a member
|
|
753
|
+
* [get_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#get_martech_list) - Retrieve a list
|
|
754
|
+
* [get_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#get_martech_member) - Retrieve a member
|
|
755
|
+
* [list_martech_lists](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#list_martech_lists) - List all lists
|
|
756
|
+
* [list_martech_members](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#list_martech_members) - List all members
|
|
757
|
+
* [patch_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#patch_martech_list) - Update a list
|
|
758
|
+
* [patch_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#patch_martech_member) - Update a member
|
|
759
|
+
* [remove_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#remove_martech_list) - Remove a list
|
|
760
|
+
* [remove_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#remove_martech_member) - Remove a member
|
|
761
|
+
* [update_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#update_martech_list) - Update a list
|
|
762
|
+
* [update_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#update_martech_member) - Update a member
|
|
763
|
+
|
|
764
|
+
### [member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md)
|
|
765
|
+
|
|
766
|
+
* [create_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#create_martech_member) - Create a member
|
|
767
|
+
* [get_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#get_martech_member) - Retrieve a member
|
|
768
|
+
* [list_martech_members](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#list_martech_members) - List all members
|
|
769
|
+
* [patch_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#patch_martech_member) - Update a member
|
|
770
|
+
* [remove_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#remove_martech_member) - Remove a member
|
|
771
|
+
* [update_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#update_martech_member) - Update a member
|
|
772
|
+
|
|
773
|
+
### [message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md)
|
|
774
|
+
|
|
775
|
+
* [create_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#create_messaging_message) - Create a message
|
|
776
|
+
* [get_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#get_messaging_message) - Retrieve a message
|
|
777
|
+
* [list_messaging_messages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#list_messaging_messages) - List all messages
|
|
778
|
+
* [patch_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#patch_messaging_message) - Update a message
|
|
779
|
+
* [remove_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#remove_messaging_message) - Remove a message
|
|
780
|
+
* [update_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#update_messaging_message) - Update a message
|
|
781
|
+
|
|
782
|
+
### [messaging](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md)
|
|
783
|
+
|
|
784
|
+
* [create_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#create_messaging_message) - Create a message
|
|
785
|
+
* [get_messaging_channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#get_messaging_channel) - Retrieve a channel
|
|
786
|
+
* [get_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#get_messaging_message) - Retrieve a message
|
|
787
|
+
* [list_messaging_channels](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#list_messaging_channels) - List all channels
|
|
788
|
+
* [list_messaging_messages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#list_messaging_messages) - List all messages
|
|
789
|
+
* [patch_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#patch_messaging_message) - Update a message
|
|
790
|
+
* [remove_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#remove_messaging_message) - Remove a message
|
|
791
|
+
* [update_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#update_messaging_message) - Update a message
|
|
792
|
+
|
|
793
|
+
### [metadata](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md)
|
|
794
|
+
|
|
795
|
+
* [create_metadata_metadata](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md#create_metadata_metadata) - Create a metadata
|
|
796
|
+
* [get_metadata_metadata](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md#get_metadata_metadata) - Retrieve a metadata
|
|
797
|
+
* [list_metadata_metadatas](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md#list_metadata_metadatas) - List all metadatas
|
|
798
|
+
* [patch_metadata_metadata](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md#patch_metadata_metadata) - Update a metadata
|
|
799
|
+
* [remove_metadata_metadata](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md#remove_metadata_metadata) - Remove a metadata
|
|
800
|
+
* [update_metadata_metadata](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md#update_metadata_metadata) - Update a metadata
|
|
801
|
+
|
|
802
|
+
### [model](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/model/README.md)
|
|
803
|
+
|
|
804
|
+
* [list_genai_models](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/model/README.md#list_genai_models) - List all models
|
|
805
|
+
|
|
806
|
+
### [note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md)
|
|
807
|
+
|
|
808
|
+
* [create_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#create_ticketing_note) - Create a note
|
|
809
|
+
* [get_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#get_ticketing_note) - Retrieve a note
|
|
810
|
+
* [list_ticketing_notes](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#list_ticketing_notes) - List all notes
|
|
811
|
+
* [patch_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#patch_ticketing_note) - Update a note
|
|
812
|
+
* [remove_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#remove_ticketing_note) - Remove a note
|
|
813
|
+
* [update_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#update_ticketing_note) - Update a note
|
|
814
|
+
|
|
815
|
+
### [order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md)
|
|
816
|
+
|
|
817
|
+
* [create_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md#create_accounting_order) - Create an order
|
|
818
|
+
* [get_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md#get_accounting_order) - Retrieve an order
|
|
819
|
+
* [list_accounting_orders](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md#list_accounting_orders) - List all orders
|
|
820
|
+
* [patch_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md#patch_accounting_order) - Update an order
|
|
821
|
+
* [remove_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md#remove_accounting_order) - Remove an order
|
|
822
|
+
* [update_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md#update_accounting_order) - Update an order
|
|
823
|
+
|
|
824
|
+
### [organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md)
|
|
825
|
+
|
|
826
|
+
* [create_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#create_repo_organization) - Create an organization
|
|
827
|
+
* [get_accounting_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#get_accounting_organization) - Retrieve an organization
|
|
828
|
+
* [get_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#get_repo_organization) - Retrieve an organization
|
|
829
|
+
* [list_accounting_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#list_accounting_organizations) - List all organizations
|
|
830
|
+
* [list_repo_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#list_repo_organizations) - List all organizations
|
|
831
|
+
* [patch_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#patch_repo_organization) - Update an organization
|
|
832
|
+
* [remove_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#remove_repo_organization) - Remove an organization
|
|
833
|
+
* [update_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#update_repo_organization) - Update an organization
|
|
834
|
+
|
|
835
|
+
### [page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md)
|
|
836
|
+
|
|
837
|
+
* [create_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#create_kms_page) - Create a page
|
|
838
|
+
* [get_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#get_kms_page) - Retrieve a page
|
|
839
|
+
* [list_kms_pages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#list_kms_pages) - List all pages
|
|
840
|
+
* [patch_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#patch_kms_page) - Update a page
|
|
841
|
+
* [remove_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#remove_kms_page) - Remove a page
|
|
842
|
+
* [update_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#update_kms_page) - Update a page
|
|
843
|
+
|
|
844
|
+
### [passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md)
|
|
845
|
+
|
|
846
|
+
* [create_passthrough_json](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#create_passthrough_json) - Passthrough POST
|
|
847
|
+
* [create_passthrough_raw](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#create_passthrough_raw) - Passthrough POST
|
|
848
|
+
* [list_passthroughs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#list_passthroughs) - Passthrough GET
|
|
849
|
+
* [patch_passthrough_json](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#patch_passthrough_json) - Passthrough PUT
|
|
850
|
+
* [patch_passthrough_raw](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#patch_passthrough_raw) - Passthrough PUT
|
|
851
|
+
* [remove_passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#remove_passthrough) - Passthrough DELETE
|
|
852
|
+
* [update_passthrough_json](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#update_passthrough_json) - Passthrough PUT
|
|
853
|
+
* [update_passthrough_raw](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#update_passthrough_raw) - Passthrough PUT
|
|
854
|
+
|
|
855
|
+
### [payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md)
|
|
856
|
+
|
|
857
|
+
* [create_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#create_payment_link) - Create a link
|
|
858
|
+
* [create_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#create_payment_payment) - Create a payment
|
|
859
|
+
* [create_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#create_payment_subscription) - Create a subscription
|
|
860
|
+
* [get_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_link) - Retrieve a link
|
|
861
|
+
* [get_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_payment) - Retrieve a payment
|
|
862
|
+
* [get_payment_payout](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_payout) - Retrieve a payout
|
|
863
|
+
* [get_payment_refund](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_refund) - Retrieve a refund
|
|
864
|
+
* [get_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_subscription) - Retrieve a subscription
|
|
865
|
+
* [list_payment_links](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_links) - List all links
|
|
866
|
+
* [list_payment_payments](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_payments) - List all payments
|
|
867
|
+
* [list_payment_payouts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_payouts) - List all payouts
|
|
868
|
+
* [list_payment_refunds](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_refunds) - List all refunds
|
|
869
|
+
* [list_payment_subscriptions](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_subscriptions) - List all subscriptions
|
|
870
|
+
* [patch_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#patch_payment_link) - Update a link
|
|
871
|
+
* [patch_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#patch_payment_payment) - Update a payment
|
|
872
|
+
* [patch_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#patch_payment_subscription) - Update a subscription
|
|
873
|
+
* [remove_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#remove_payment_link) - Remove a link
|
|
874
|
+
* [remove_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#remove_payment_payment) - Remove a payment
|
|
875
|
+
* [remove_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#remove_payment_subscription) - Remove a subscription
|
|
876
|
+
* [update_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#update_payment_link) - Update a link
|
|
877
|
+
* [update_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#update_payment_payment) - Update a payment
|
|
878
|
+
* [update_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#update_payment_subscription) - Update a subscription
|
|
879
|
+
|
|
880
|
+
### [payout](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payout/README.md)
|
|
881
|
+
|
|
882
|
+
* [get_payment_payout](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payout/README.md#get_payment_payout) - Retrieve a payout
|
|
883
|
+
* [list_payment_payouts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payout/README.md#list_payment_payouts) - List all payouts
|
|
884
|
+
|
|
885
|
+
### [payslip](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payslip/README.md)
|
|
886
|
+
|
|
887
|
+
* [get_hris_payslip](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payslip/README.md#get_hris_payslip) - Retrieve a payslip
|
|
888
|
+
* [list_hris_payslips](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payslip/README.md#list_hris_payslips) - List all payslips
|
|
889
|
+
|
|
890
|
+
### [person](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/person/README.md)
|
|
891
|
+
|
|
892
|
+
* [list_enrich_people](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/person/README.md#list_enrich_people) - Retrieve enrichment information for a person
|
|
893
|
+
|
|
894
|
+
### [pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md)
|
|
895
|
+
|
|
896
|
+
* [create_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#create_crm_pipeline) - Create a pipeline
|
|
897
|
+
* [get_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#get_crm_pipeline) - Retrieve a pipeline
|
|
898
|
+
* [list_crm_pipelines](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#list_crm_pipelines) - List all pipelines
|
|
899
|
+
* [patch_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#patch_crm_pipeline) - Update a pipeline
|
|
900
|
+
* [remove_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#remove_crm_pipeline) - Remove a pipeline
|
|
901
|
+
* [update_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#update_crm_pipeline) - Update a pipeline
|
|
902
|
+
|
|
903
|
+
### [project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md)
|
|
904
|
+
|
|
905
|
+
* [create_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#create_task_project) - Create a project
|
|
906
|
+
* [get_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#get_task_project) - Retrieve a project
|
|
907
|
+
* [list_task_projects](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#list_task_projects) - List all projects
|
|
908
|
+
* [patch_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#patch_task_project) - Update a project
|
|
909
|
+
* [remove_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#remove_task_project) - Remove a project
|
|
910
|
+
* [update_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#update_task_project) - Update a project
|
|
911
|
+
|
|
912
|
+
### [prompt](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/prompt/README.md)
|
|
913
|
+
|
|
914
|
+
* [create_genai_prompt](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/prompt/README.md#create_genai_prompt) - Create a prompt
|
|
915
|
+
|
|
916
|
+
### [pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md)
|
|
917
|
+
|
|
918
|
+
* [create_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#create_repo_pullrequest) - Create a pullrequest
|
|
919
|
+
* [get_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#get_repo_pullrequest) - Retrieve a pullrequest
|
|
920
|
+
* [list_repo_pullrequests](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#list_repo_pullrequests) - List all pullrequests
|
|
921
|
+
* [patch_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#patch_repo_pullrequest) - Update a pullrequest
|
|
922
|
+
* [remove_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#remove_repo_pullrequest) - Remove a pullrequest
|
|
923
|
+
* [update_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#update_repo_pullrequest) - Update a pullrequest
|
|
924
|
+
|
|
925
|
+
### [refund](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/refund/README.md)
|
|
926
|
+
|
|
927
|
+
* [get_payment_refund](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/refund/README.md#get_payment_refund) - Retrieve a refund
|
|
928
|
+
* [list_payment_refunds](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/refund/README.md#list_payment_refunds) - List all refunds
|
|
929
|
+
|
|
930
|
+
### [repo](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md)
|
|
931
|
+
|
|
932
|
+
* [create_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_branch) - Create a branch
|
|
933
|
+
* [create_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_commit) - Create a commit
|
|
934
|
+
* [create_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_organization) - Create an organization
|
|
935
|
+
* [create_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_pullrequest) - Create a pullrequest
|
|
936
|
+
* [create_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_repository) - Create a repository
|
|
937
|
+
* [get_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_branch) - Retrieve a branch
|
|
938
|
+
* [get_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_commit) - Retrieve a commit
|
|
939
|
+
* [get_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_organization) - Retrieve an organization
|
|
940
|
+
* [get_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_pullrequest) - Retrieve a pullrequest
|
|
941
|
+
* [get_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_repository) - Retrieve a repository
|
|
942
|
+
* [list_repo_branches](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_branches) - List all branches
|
|
943
|
+
* [list_repo_commits](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_commits) - List all commits
|
|
944
|
+
* [list_repo_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_organizations) - List all organizations
|
|
945
|
+
* [list_repo_pullrequests](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_pullrequests) - List all pullrequests
|
|
946
|
+
* [list_repo_repositories](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_repositories) - List all repositories
|
|
947
|
+
* [patch_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_branch) - Update a branch
|
|
948
|
+
* [patch_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_commit) - Update a commit
|
|
949
|
+
* [patch_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_organization) - Update an organization
|
|
950
|
+
* [patch_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_pullrequest) - Update a pullrequest
|
|
951
|
+
* [patch_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_repository) - Update a repository
|
|
952
|
+
* [remove_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_branch) - Remove a branch
|
|
953
|
+
* [remove_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_commit) - Remove a commit
|
|
954
|
+
* [remove_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_organization) - Remove an organization
|
|
955
|
+
* [remove_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_pullrequest) - Remove a pullrequest
|
|
956
|
+
* [remove_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_repository) - Remove a repository
|
|
957
|
+
* [update_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_branch) - Update a branch
|
|
958
|
+
* [update_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_commit) - Update a commit
|
|
959
|
+
* [update_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_organization) - Update an organization
|
|
960
|
+
* [update_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_pullrequest) - Update a pullrequest
|
|
961
|
+
* [update_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_repository) - Update a repository
|
|
962
|
+
|
|
963
|
+
### [repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md)
|
|
964
|
+
|
|
965
|
+
* [create_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#create_repo_repository) - Create a repository
|
|
966
|
+
* [get_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#get_repo_repository) - Retrieve a repository
|
|
967
|
+
* [list_repo_repositories](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#list_repo_repositories) - List all repositories
|
|
968
|
+
* [patch_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#patch_repo_repository) - Update a repository
|
|
969
|
+
* [remove_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#remove_repo_repository) - Remove a repository
|
|
970
|
+
* [update_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#update_repo_repository) - Update a repository
|
|
971
|
+
|
|
972
|
+
### [scim](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md)
|
|
973
|
+
|
|
974
|
+
* [create_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#create_scim_groups) - Create group
|
|
975
|
+
* [create_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#create_scim_users) - Create user
|
|
976
|
+
* [get_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#get_scim_groups) - Get group
|
|
977
|
+
* [get_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#get_scim_users) - Get user
|
|
978
|
+
* [list_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#list_scim_groups) - List groups
|
|
979
|
+
* [list_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#list_scim_users) - List users
|
|
980
|
+
* [patch_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#patch_scim_groups) - Update group
|
|
981
|
+
* [patch_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#patch_scim_users) - Update user
|
|
982
|
+
* [remove_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#remove_scim_groups) - Delete group
|
|
983
|
+
* [remove_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#remove_scim_users) - Delete user
|
|
984
|
+
* [update_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#update_scim_groups) - Update group
|
|
985
|
+
* [update_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#update_scim_users) - Update user
|
|
986
|
+
|
|
987
|
+
### [scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md)
|
|
988
|
+
|
|
989
|
+
* [create_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#create_ats_scorecard) - Create a scorecard
|
|
990
|
+
* [get_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#get_ats_scorecard) - Retrieve a scorecard
|
|
991
|
+
* [list_ats_scorecards](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#list_ats_scorecards) - List all scorecards
|
|
992
|
+
* [patch_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#patch_ats_scorecard) - Update a scorecard
|
|
993
|
+
* [remove_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#remove_ats_scorecard) - Remove a scorecard
|
|
994
|
+
* [update_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#update_ats_scorecard) - Update a scorecard
|
|
995
|
+
|
|
996
|
+
### [space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md)
|
|
997
|
+
|
|
998
|
+
* [create_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#create_kms_space) - Create a space
|
|
999
|
+
* [get_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#get_kms_space) - Retrieve a space
|
|
1000
|
+
* [list_kms_spaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#list_kms_spaces) - List all spaces
|
|
1001
|
+
* [patch_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#patch_kms_space) - Update a space
|
|
1002
|
+
* [remove_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#remove_kms_space) - Remove a space
|
|
1003
|
+
* [update_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#update_kms_space) - Update a space
|
|
1004
|
+
|
|
1005
|
+
### [storage](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md)
|
|
1006
|
+
|
|
1007
|
+
* [create_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#create_storage_file) - Create a file
|
|
1008
|
+
* [get_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#get_storage_file) - Retrieve a file
|
|
1009
|
+
* [list_storage_files](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#list_storage_files) - List all files
|
|
1010
|
+
* [patch_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#patch_storage_file) - Update a file
|
|
1011
|
+
* [remove_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#remove_storage_file) - Remove a file
|
|
1012
|
+
* [update_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#update_storage_file) - Update a file
|
|
1013
|
+
|
|
1014
|
+
### [student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md)
|
|
1015
|
+
|
|
1016
|
+
* [create_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#create_lms_student) - Create a student
|
|
1017
|
+
* [get_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#get_lms_student) - Retrieve a student
|
|
1018
|
+
* [list_lms_students](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#list_lms_students) - List all students
|
|
1019
|
+
* [patch_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#patch_lms_student) - Update a student
|
|
1020
|
+
* [remove_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#remove_lms_student) - Remove a student
|
|
1021
|
+
* [update_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#update_lms_student) - Update a student
|
|
1022
|
+
|
|
1023
|
+
### [subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md)
|
|
1024
|
+
|
|
1025
|
+
* [create_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md#create_payment_subscription) - Create a subscription
|
|
1026
|
+
* [get_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md#get_payment_subscription) - Retrieve a subscription
|
|
1027
|
+
* [list_payment_subscriptions](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md#list_payment_subscriptions) - List all subscriptions
|
|
1028
|
+
* [patch_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md#patch_payment_subscription) - Update a subscription
|
|
1029
|
+
* [remove_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md#remove_payment_subscription) - Remove a subscription
|
|
1030
|
+
* [update_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md#update_payment_subscription) - Update a subscription
|
|
1031
|
+
|
|
1032
|
+
### [task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md)
|
|
1033
|
+
|
|
1034
|
+
* [create_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#create_task_comment) - Create a comment
|
|
1035
|
+
* [create_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#create_task_project) - Create a project
|
|
1036
|
+
* [create_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#create_task_task) - Create a task
|
|
1037
|
+
* [get_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#get_task_comment) - Retrieve a comment
|
|
1038
|
+
* [get_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#get_task_project) - Retrieve a project
|
|
1039
|
+
* [get_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#get_task_task) - Retrieve a task
|
|
1040
|
+
* [list_task_comments](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#list_task_comments) - List all comments
|
|
1041
|
+
* [list_task_projects](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#list_task_projects) - List all projects
|
|
1042
|
+
* [list_task_tasks](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#list_task_tasks) - List all tasks
|
|
1043
|
+
* [patch_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#patch_task_comment) - Update a comment
|
|
1044
|
+
* [patch_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#patch_task_project) - Update a project
|
|
1045
|
+
* [patch_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#patch_task_task) - Update a task
|
|
1046
|
+
* [remove_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#remove_task_comment) - Remove a comment
|
|
1047
|
+
* [remove_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#remove_task_project) - Remove a project
|
|
1048
|
+
* [remove_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#remove_task_task) - Remove a task
|
|
1049
|
+
* [update_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#update_task_comment) - Update a comment
|
|
1050
|
+
* [update_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#update_task_project) - Update a project
|
|
1051
|
+
* [update_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#update_task_task) - Update a task
|
|
1052
|
+
|
|
1053
|
+
### [taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md)
|
|
1054
|
+
|
|
1055
|
+
* [create_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#create_accounting_taxrate) - Create a taxrate
|
|
1056
|
+
* [get_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#get_accounting_taxrate) - Retrieve a taxrate
|
|
1057
|
+
* [list_accounting_taxrates](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#list_accounting_taxrates) - List all taxrates
|
|
1058
|
+
* [patch_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#patch_accounting_taxrate) - Update a taxrate
|
|
1059
|
+
* [remove_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#remove_accounting_taxrate) - Remove a taxrate
|
|
1060
|
+
* [update_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#update_accounting_taxrate) - Update a taxrate
|
|
1061
|
+
|
|
1062
|
+
### [ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md)
|
|
1063
|
+
|
|
1064
|
+
* [create_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#create_ticketing_ticket) - Create a ticket
|
|
1065
|
+
* [get_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#get_ticketing_ticket) - Retrieve a ticket
|
|
1066
|
+
* [list_ticketing_tickets](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#list_ticketing_tickets) - List all tickets
|
|
1067
|
+
* [patch_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#patch_ticketing_ticket) - Update a ticket
|
|
1068
|
+
* [remove_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#remove_ticketing_ticket) - Remove a ticket
|
|
1069
|
+
* [update_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#update_ticketing_ticket) - Update a ticket
|
|
1070
|
+
|
|
1071
|
+
### [ticketing](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md)
|
|
1072
|
+
|
|
1073
|
+
* [create_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#create_ticketing_customer) - Create a customer
|
|
1074
|
+
* [create_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#create_ticketing_note) - Create a note
|
|
1075
|
+
* [create_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#create_ticketing_ticket) - Create a ticket
|
|
1076
|
+
* [get_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#get_ticketing_customer) - Retrieve a customer
|
|
1077
|
+
* [get_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#get_ticketing_note) - Retrieve a note
|
|
1078
|
+
* [get_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#get_ticketing_ticket) - Retrieve a ticket
|
|
1079
|
+
* [list_ticketing_customers](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#list_ticketing_customers) - List all customers
|
|
1080
|
+
* [list_ticketing_notes](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#list_ticketing_notes) - List all notes
|
|
1081
|
+
* [list_ticketing_tickets](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#list_ticketing_tickets) - List all tickets
|
|
1082
|
+
* [patch_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#patch_ticketing_customer) - Update a customer
|
|
1083
|
+
* [patch_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#patch_ticketing_note) - Update a note
|
|
1084
|
+
* [patch_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#patch_ticketing_ticket) - Update a ticket
|
|
1085
|
+
* [remove_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#remove_ticketing_customer) - Remove a customer
|
|
1086
|
+
* [remove_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#remove_ticketing_note) - Remove a note
|
|
1087
|
+
* [remove_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#remove_ticketing_ticket) - Remove a ticket
|
|
1088
|
+
* [update_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#update_ticketing_customer) - Update a customer
|
|
1089
|
+
* [update_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#update_ticketing_note) - Update a note
|
|
1090
|
+
* [update_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#update_ticketing_ticket) - Update a ticket
|
|
1091
|
+
|
|
1092
|
+
### [timeoff](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md)
|
|
1093
|
+
|
|
1094
|
+
* [get_hris_timeoff](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md#get_hris_timeoff) - Retrieve a timeoff
|
|
1095
|
+
* [list_hris_timeoffs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md#list_hris_timeoffs) - List all timeoffs
|
|
1096
|
+
|
|
1097
|
+
### [transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md)
|
|
1098
|
+
|
|
1099
|
+
* [create_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#create_accounting_transaction) - Create a transaction
|
|
1100
|
+
* [get_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#get_accounting_transaction) - Retrieve a transaction
|
|
1101
|
+
* [list_accounting_transactions](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#list_accounting_transactions) - List all transactions
|
|
1102
|
+
* [patch_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#patch_accounting_transaction) - Update a transaction
|
|
1103
|
+
* [remove_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#remove_accounting_transaction) - Remove a transaction
|
|
1104
|
+
* [update_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#update_accounting_transaction) - Update a transaction
|
|
1105
|
+
|
|
1106
|
+
### [uc](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md)
|
|
1107
|
+
|
|
1108
|
+
* [create_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#create_uc_contact) - Create a contact
|
|
1109
|
+
* [get_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#get_uc_contact) - Retrieve a contact
|
|
1110
|
+
* [list_uc_calls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#list_uc_calls) - List all calls
|
|
1111
|
+
* [list_uc_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#list_uc_contacts) - List all contacts
|
|
1112
|
+
* [patch_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#patch_uc_contact) - Update a contact
|
|
1113
|
+
* [remove_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#remove_uc_contact) - Remove a contact
|
|
1114
|
+
* [update_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#update_uc_contact) - Update a contact
|
|
1115
|
+
|
|
1116
|
+
### [unified](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md)
|
|
1117
|
+
|
|
1118
|
+
* [create_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#create_unified_connection) - Create connection
|
|
1119
|
+
* [create_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#create_unified_webhook) - Create webhook subscription
|
|
1120
|
+
* [get_unified_apicall](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#get_unified_apicall) - Retrieve specific API Call by its ID
|
|
1121
|
+
* [get_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#get_unified_connection) - Retrieve connection
|
|
1122
|
+
* [get_unified_integration_auth](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#get_unified_integration_auth) - Create connection indirectly
|
|
1123
|
+
* [get_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#get_unified_webhook) - Retrieve webhook by its ID
|
|
1124
|
+
* [list_unified_apicalls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_apicalls) - Returns API Calls
|
|
1125
|
+
* [list_unified_connections](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_connections) - List all connections
|
|
1126
|
+
* [list_unified_integration_workspaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_integration_workspaces) - Returns all activated integrations in a workspace
|
|
1127
|
+
* [list_unified_integrations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_integrations) - Returns all integrations
|
|
1128
|
+
* [list_unified_issues](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_issues) - List support issues
|
|
1129
|
+
* [list_unified_webhooks](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_webhooks) - Returns all registered webhooks
|
|
1130
|
+
* [patch_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#patch_unified_connection) - Update connection
|
|
1131
|
+
* [patch_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#patch_unified_webhook) - Update webhook subscription
|
|
1132
|
+
* [patch_unified_webhook_trigger](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#patch_unified_webhook_trigger) - Trigger webhook
|
|
1133
|
+
* [remove_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#remove_unified_connection) - Remove connection
|
|
1134
|
+
* [remove_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#remove_unified_webhook) - Remove webhook subscription
|
|
1135
|
+
* [update_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#update_unified_connection) - Update connection
|
|
1136
|
+
* [update_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#update_unified_webhook) - Update webhook subscription
|
|
1137
|
+
* [update_unified_webhook_trigger](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#update_unified_webhook_trigger) - Trigger webhook
|
|
1138
|
+
|
|
1139
|
+
|
|
1140
|
+
### [user](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md)
|
|
1141
|
+
|
|
1142
|
+
* [create_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md#create_scim_users) - Create user
|
|
1143
|
+
* [get_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md#get_scim_users) - Get user
|
|
1144
|
+
* [list_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md#list_scim_users) - List users
|
|
1145
|
+
* [patch_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md#patch_scim_users) - Update user
|
|
1146
|
+
* [remove_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md#remove_scim_users) - Delete user
|
|
1147
|
+
* [update_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md#update_scim_users) - Update user
|
|
1148
|
+
|
|
1149
|
+
### [webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md)
|
|
1150
|
+
|
|
1151
|
+
* [create_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#create_unified_webhook) - Create webhook subscription
|
|
1152
|
+
* [get_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#get_unified_webhook) - Retrieve webhook by its ID
|
|
1153
|
+
* [list_unified_webhooks](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#list_unified_webhooks) - Returns all registered webhooks
|
|
1154
|
+
* [patch_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#patch_unified_webhook) - Update webhook subscription
|
|
1155
|
+
* [patch_unified_webhook_trigger](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#patch_unified_webhook_trigger) - Trigger webhook
|
|
1156
|
+
* [remove_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#remove_unified_webhook) - Remove webhook subscription
|
|
1157
|
+
* [update_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#update_unified_webhook) - Update webhook subscription
|
|
1158
|
+
* [update_unified_webhook_trigger](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#update_unified_webhook_trigger) - Trigger webhook
|
|
1159
|
+
|
|
1160
|
+
</details>
|
|
1161
|
+
<!-- End Available Resources and Operations [operations] -->
|
|
1162
|
+
|
|
1163
|
+
|
|
1164
|
+
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
|
|
1168
|
+
|
|
1169
|
+
<!-- Start File uploads [file-upload] -->
|
|
1170
|
+
## File uploads
|
|
1171
|
+
|
|
1172
|
+
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.
|
|
1173
|
+
|
|
1174
|
+
> [!TIP]
|
|
1175
|
+
>
|
|
1176
|
+
> For endpoints that handle file uploads bytes arrays can also be used. However, using streams is recommended for large files.
|
|
1177
|
+
>
|
|
1178
|
+
|
|
1179
|
+
```python
|
|
1180
|
+
from unified_python_sdk import UnifiedTo
|
|
1181
|
+
from unified_python_sdk.models import shared
|
|
1182
|
+
|
|
1183
|
+
with UnifiedTo(
|
|
1184
|
+
security=shared.Security(
|
|
1185
|
+
jwt="<YOUR_API_KEY_HERE>",
|
|
1186
|
+
),
|
|
1187
|
+
) as unified_to:
|
|
1188
|
+
|
|
1189
|
+
res = unified_to.passthrough.create_passthrough_raw(request={
|
|
1190
|
+
"connection_id": "<id>",
|
|
1191
|
+
"path": "/opt/lib",
|
|
1192
|
+
})
|
|
1193
|
+
|
|
1194
|
+
assert res is not None
|
|
1195
|
+
|
|
1196
|
+
# Handle response
|
|
1197
|
+
print(res)
|
|
1198
|
+
|
|
1199
|
+
```
|
|
1200
|
+
<!-- End File uploads [file-upload] -->
|
|
1201
|
+
|
|
1202
|
+
<!-- Start Retries [retries] -->
|
|
1203
|
+
## Retries
|
|
1204
|
+
|
|
1205
|
+
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.
|
|
1206
|
+
|
|
1207
|
+
To change the default retry strategy for a single API call, simply provide a `RetryConfig` object to the call:
|
|
1208
|
+
```python
|
|
1209
|
+
from unified_python_sdk import UnifiedTo
|
|
1210
|
+
from unified_python_sdk.models import shared
|
|
1211
|
+
from unified_python_sdk.utils import BackoffStrategy, RetryConfig
|
|
1212
|
+
|
|
1213
|
+
with UnifiedTo(
|
|
1214
|
+
security=shared.Security(
|
|
1215
|
+
jwt="<YOUR_API_KEY_HERE>",
|
|
1216
|
+
),
|
|
1217
|
+
) as unified_to:
|
|
1218
|
+
|
|
1219
|
+
res = unified_to.accounting.create_accounting_account(request={
|
|
1220
|
+
"connection_id": "<id>",
|
|
1221
|
+
},
|
|
1222
|
+
RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
|
|
1223
|
+
|
|
1224
|
+
assert res.accounting_account is not None
|
|
1225
|
+
|
|
1226
|
+
# Handle response
|
|
1227
|
+
print(res.accounting_account)
|
|
1228
|
+
|
|
1229
|
+
```
|
|
1230
|
+
|
|
1231
|
+
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:
|
|
1232
|
+
```python
|
|
1233
|
+
from unified_python_sdk import UnifiedTo
|
|
1234
|
+
from unified_python_sdk.models import shared
|
|
1235
|
+
from unified_python_sdk.utils import BackoffStrategy, RetryConfig
|
|
1236
|
+
|
|
1237
|
+
with UnifiedTo(
|
|
1238
|
+
retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
|
|
1239
|
+
security=shared.Security(
|
|
1240
|
+
jwt="<YOUR_API_KEY_HERE>",
|
|
1241
|
+
),
|
|
1242
|
+
) as unified_to:
|
|
1243
|
+
|
|
1244
|
+
res = unified_to.accounting.create_accounting_account(request={
|
|
1245
|
+
"connection_id": "<id>",
|
|
1246
|
+
})
|
|
1247
|
+
|
|
1248
|
+
assert res.accounting_account is not None
|
|
1249
|
+
|
|
1250
|
+
# Handle response
|
|
1251
|
+
print(res.accounting_account)
|
|
1252
|
+
|
|
1253
|
+
```
|
|
1254
|
+
<!-- End Retries [retries] -->
|
|
1255
|
+
|
|
1256
|
+
<!-- Start Error Handling [errors] -->
|
|
1257
|
+
## Error Handling
|
|
1258
|
+
|
|
1259
|
+
Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an exception.
|
|
1260
|
+
|
|
1261
|
+
By default, an API error will raise a errors.SDKError exception, which has the following properties:
|
|
1262
|
+
|
|
1263
|
+
| Property | Type | Description |
|
|
1264
|
+
|-----------------|------------------|-----------------------|
|
|
1265
|
+
| `.status_code` | *int* | The HTTP status code |
|
|
1266
|
+
| `.message` | *str* | The error message |
|
|
1267
|
+
| `.raw_response` | *httpx.Response* | The raw HTTP response |
|
|
1268
|
+
| `.body` | *str* | The response content |
|
|
1269
|
+
|
|
1270
|
+
When custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `create_accounting_account_async` method may raise the following exceptions:
|
|
1271
|
+
|
|
1272
|
+
| Error Type | Status Code | Content Type |
|
|
1273
|
+
| --------------- | ----------- | ------------ |
|
|
1274
|
+
| errors.SDKError | 4XX, 5XX | \*/\* |
|
|
1275
|
+
|
|
1276
|
+
### Example
|
|
1277
|
+
|
|
1278
|
+
```python
|
|
1279
|
+
from unified_python_sdk import UnifiedTo
|
|
1280
|
+
from unified_python_sdk.models import errors, shared
|
|
1281
|
+
|
|
1282
|
+
with UnifiedTo(
|
|
1283
|
+
security=shared.Security(
|
|
1284
|
+
jwt="<YOUR_API_KEY_HERE>",
|
|
1285
|
+
),
|
|
1286
|
+
) as unified_to:
|
|
1287
|
+
res = None
|
|
1288
|
+
try:
|
|
1289
|
+
|
|
1290
|
+
res = unified_to.accounting.create_accounting_account(request={
|
|
1291
|
+
"connection_id": "<id>",
|
|
1292
|
+
})
|
|
1293
|
+
|
|
1294
|
+
assert res.accounting_account is not None
|
|
1295
|
+
|
|
1296
|
+
# Handle response
|
|
1297
|
+
print(res.accounting_account)
|
|
1298
|
+
|
|
1299
|
+
except errors.SDKError as e:
|
|
1300
|
+
# handle exception
|
|
1301
|
+
raise(e)
|
|
1302
|
+
```
|
|
1303
|
+
<!-- End Error Handling [errors] -->
|
|
1304
|
+
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
<!-- Start Server Selection [server] -->
|
|
1308
|
+
## Server Selection
|
|
1309
|
+
|
|
1310
|
+
### Select Server by Index
|
|
1311
|
+
|
|
1312
|
+
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:
|
|
1313
|
+
|
|
1314
|
+
| # | Server |
|
|
1315
|
+
| --- | --------------------------- |
|
|
1316
|
+
| 0 | `https://api.unified.to` |
|
|
1317
|
+
| 1 | `https://api-eu.unified.to` |
|
|
1318
|
+
|
|
1319
|
+
#### Example
|
|
1320
|
+
|
|
1321
|
+
```python
|
|
1322
|
+
from unified_python_sdk import UnifiedTo
|
|
1323
|
+
from unified_python_sdk.models import shared
|
|
1324
|
+
|
|
1325
|
+
with UnifiedTo(
|
|
1326
|
+
server_idx=1,
|
|
1327
|
+
security=shared.Security(
|
|
1328
|
+
jwt="<YOUR_API_KEY_HERE>",
|
|
1329
|
+
),
|
|
1330
|
+
) as unified_to:
|
|
1331
|
+
|
|
1332
|
+
res = unified_to.accounting.create_accounting_account(request={
|
|
1333
|
+
"connection_id": "<id>",
|
|
1334
|
+
})
|
|
1335
|
+
|
|
1336
|
+
assert res.accounting_account is not None
|
|
1337
|
+
|
|
1338
|
+
# Handle response
|
|
1339
|
+
print(res.accounting_account)
|
|
1340
|
+
|
|
1341
|
+
```
|
|
1342
|
+
|
|
1343
|
+
### Override Server URL Per-Client
|
|
1344
|
+
|
|
1345
|
+
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:
|
|
1346
|
+
```python
|
|
1347
|
+
from unified_python_sdk import UnifiedTo
|
|
1348
|
+
from unified_python_sdk.models import shared
|
|
1349
|
+
|
|
1350
|
+
with UnifiedTo(
|
|
1351
|
+
server_url="https://api.unified.to",
|
|
1352
|
+
security=shared.Security(
|
|
1353
|
+
jwt="<YOUR_API_KEY_HERE>",
|
|
1354
|
+
),
|
|
1355
|
+
) as unified_to:
|
|
1356
|
+
|
|
1357
|
+
res = unified_to.accounting.create_accounting_account(request={
|
|
1358
|
+
"connection_id": "<id>",
|
|
1359
|
+
})
|
|
1360
|
+
|
|
1361
|
+
assert res.accounting_account is not None
|
|
1362
|
+
|
|
1363
|
+
# Handle response
|
|
1364
|
+
print(res.accounting_account)
|
|
1365
|
+
|
|
1366
|
+
```
|
|
1367
|
+
<!-- End Server Selection [server] -->
|
|
1368
|
+
|
|
1369
|
+
|
|
1370
|
+
|
|
1371
|
+
<!-- Start Custom HTTP Client [http-client] -->
|
|
1372
|
+
## Custom HTTP Client
|
|
1373
|
+
|
|
1374
|
+
The Python SDK makes API calls using the [httpx](https://www.python-httpx.org/) 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.
|
|
1375
|
+
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.
|
|
1376
|
+
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.
|
|
1377
|
+
|
|
1378
|
+
For example, you could specify a header for every request that this sdk makes as follows:
|
|
1379
|
+
```python
|
|
1380
|
+
from unified_python_sdk import UnifiedTo
|
|
1381
|
+
import httpx
|
|
1382
|
+
|
|
1383
|
+
http_client = httpx.Client(headers={"x-custom-header": "someValue"})
|
|
1384
|
+
s = UnifiedTo(client=http_client)
|
|
1385
|
+
```
|
|
1386
|
+
|
|
1387
|
+
or you could wrap the client with your own custom logic:
|
|
1388
|
+
```python
|
|
1389
|
+
from unified_python_sdk import UnifiedTo
|
|
1390
|
+
from unified_python_sdk.httpclient import AsyncHttpClient
|
|
1391
|
+
import httpx
|
|
1392
|
+
|
|
1393
|
+
class CustomClient(AsyncHttpClient):
|
|
1394
|
+
client: AsyncHttpClient
|
|
1395
|
+
|
|
1396
|
+
def __init__(self, client: AsyncHttpClient):
|
|
1397
|
+
self.client = client
|
|
1398
|
+
|
|
1399
|
+
async def send(
|
|
1400
|
+
self,
|
|
1401
|
+
request: httpx.Request,
|
|
1402
|
+
*,
|
|
1403
|
+
stream: bool = False,
|
|
1404
|
+
auth: Union[
|
|
1405
|
+
httpx._types.AuthTypes, httpx._client.UseClientDefault, None
|
|
1406
|
+
] = httpx.USE_CLIENT_DEFAULT,
|
|
1407
|
+
follow_redirects: Union[
|
|
1408
|
+
bool, httpx._client.UseClientDefault
|
|
1409
|
+
] = httpx.USE_CLIENT_DEFAULT,
|
|
1410
|
+
) -> httpx.Response:
|
|
1411
|
+
request.headers["Client-Level-Header"] = "added by client"
|
|
1412
|
+
|
|
1413
|
+
return await self.client.send(
|
|
1414
|
+
request, stream=stream, auth=auth, follow_redirects=follow_redirects
|
|
1415
|
+
)
|
|
1416
|
+
|
|
1417
|
+
def build_request(
|
|
1418
|
+
self,
|
|
1419
|
+
method: str,
|
|
1420
|
+
url: httpx._types.URLTypes,
|
|
1421
|
+
*,
|
|
1422
|
+
content: Optional[httpx._types.RequestContent] = None,
|
|
1423
|
+
data: Optional[httpx._types.RequestData] = None,
|
|
1424
|
+
files: Optional[httpx._types.RequestFiles] = None,
|
|
1425
|
+
json: Optional[Any] = None,
|
|
1426
|
+
params: Optional[httpx._types.QueryParamTypes] = None,
|
|
1427
|
+
headers: Optional[httpx._types.HeaderTypes] = None,
|
|
1428
|
+
cookies: Optional[httpx._types.CookieTypes] = None,
|
|
1429
|
+
timeout: Union[
|
|
1430
|
+
httpx._types.TimeoutTypes, httpx._client.UseClientDefault
|
|
1431
|
+
] = httpx.USE_CLIENT_DEFAULT,
|
|
1432
|
+
extensions: Optional[httpx._types.RequestExtensions] = None,
|
|
1433
|
+
) -> httpx.Request:
|
|
1434
|
+
return self.client.build_request(
|
|
1435
|
+
method,
|
|
1436
|
+
url,
|
|
1437
|
+
content=content,
|
|
1438
|
+
data=data,
|
|
1439
|
+
files=files,
|
|
1440
|
+
json=json,
|
|
1441
|
+
params=params,
|
|
1442
|
+
headers=headers,
|
|
1443
|
+
cookies=cookies,
|
|
1444
|
+
timeout=timeout,
|
|
1445
|
+
extensions=extensions,
|
|
1446
|
+
)
|
|
1447
|
+
|
|
1448
|
+
s = UnifiedTo(async_client=CustomClient(httpx.AsyncClient()))
|
|
1449
|
+
```
|
|
1450
|
+
<!-- End Custom HTTP Client [http-client] -->
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
|
|
1454
|
+
<!-- Start Authentication [security] -->
|
|
1455
|
+
## Authentication
|
|
1456
|
+
|
|
1457
|
+
### Per-Client Security Schemes
|
|
1458
|
+
|
|
1459
|
+
This SDK supports the following security scheme globally:
|
|
1460
|
+
|
|
1461
|
+
| Name | Type | Scheme |
|
|
1462
|
+
| ----- | ------ | ------- |
|
|
1463
|
+
| `jwt` | apiKey | API key |
|
|
1464
|
+
|
|
1465
|
+
You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. For example:
|
|
1466
|
+
```python
|
|
1467
|
+
from unified_python_sdk import UnifiedTo
|
|
1468
|
+
from unified_python_sdk.models import shared
|
|
1469
|
+
|
|
1470
|
+
with UnifiedTo(
|
|
1471
|
+
security=shared.Security(
|
|
1472
|
+
jwt="<YOUR_API_KEY_HERE>",
|
|
1473
|
+
),
|
|
1474
|
+
) as unified_to:
|
|
1475
|
+
|
|
1476
|
+
res = unified_to.accounting.create_accounting_account(request={
|
|
1477
|
+
"connection_id": "<id>",
|
|
1478
|
+
})
|
|
1479
|
+
|
|
1480
|
+
assert res.accounting_account is not None
|
|
1481
|
+
|
|
1482
|
+
# Handle response
|
|
1483
|
+
print(res.accounting_account)
|
|
1484
|
+
|
|
1485
|
+
```
|
|
1486
|
+
<!-- End Authentication [security] -->
|
|
1487
|
+
|
|
1488
|
+
<!-- Start Debugging [debug] -->
|
|
1489
|
+
## Debugging
|
|
1490
|
+
|
|
1491
|
+
You can setup your SDK to emit debug logs for SDK requests and responses.
|
|
1492
|
+
|
|
1493
|
+
You can pass your own logger class directly into your SDK.
|
|
1494
|
+
```python
|
|
1495
|
+
from unified_python_sdk import UnifiedTo
|
|
1496
|
+
import logging
|
|
1497
|
+
|
|
1498
|
+
logging.basicConfig(level=logging.DEBUG)
|
|
1499
|
+
s = UnifiedTo(debug_logger=logging.getLogger("unified_python_sdk"))
|
|
1500
|
+
```
|
|
1501
|
+
<!-- End Debugging [debug] -->
|
|
1502
|
+
|
|
1503
|
+
<!-- Placeholder for Future Speakeasy SDK Sections -->
|
|
1504
|
+
|
|
1505
|
+
|
|
1506
|
+
### Contributions
|
|
1507
|
+
|
|
1508
|
+
While we value open-source contributions to this SDK, this library is generated programmatically.
|
|
1509
|
+
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!
|
|
1510
|
+
|
|
1511
|
+
### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)
|
|
1512
|
+
|