moovio_sdk 0.3.8__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.
Files changed (587) hide show
  1. moovio_sdk-0.3.8/PKG-INFO +1920 -0
  2. moovio_sdk-0.3.8/README-PYPI.md +1897 -0
  3. moovio_sdk-0.3.8/py.typed +1 -0
  4. moovio_sdk-0.3.8/pyproject.toml +59 -0
  5. moovio_sdk-0.3.8/src/moovio_sdk/__init__.py +17 -0
  6. moovio_sdk-0.3.8/src/moovio_sdk/_hooks/__init__.py +5 -0
  7. moovio_sdk-0.3.8/src/moovio_sdk/_hooks/registration.py +13 -0
  8. moovio_sdk-0.3.8/src/moovio_sdk/_hooks/sdkhooks.py +76 -0
  9. moovio_sdk-0.3.8/src/moovio_sdk/_hooks/types.py +106 -0
  10. moovio_sdk-0.3.8/src/moovio_sdk/_version.py +15 -0
  11. moovio_sdk-0.3.8/src/moovio_sdk/accounts.py +2461 -0
  12. moovio_sdk-0.3.8/src/moovio_sdk/adjustments.py +463 -0
  13. moovio_sdk-0.3.8/src/moovio_sdk/apple_pay.py +1417 -0
  14. moovio_sdk-0.3.8/src/moovio_sdk/authentication.py +531 -0
  15. moovio_sdk-0.3.8/src/moovio_sdk/avatars.py +231 -0
  16. moovio_sdk-0.3.8/src/moovio_sdk/bank_accounts.py +2445 -0
  17. moovio_sdk-0.3.8/src/moovio_sdk/basesdk.py +363 -0
  18. moovio_sdk-0.3.8/src/moovio_sdk/branding.py +1089 -0
  19. moovio_sdk-0.3.8/src/moovio_sdk/capabilities.py +1001 -0
  20. moovio_sdk-0.3.8/src/moovio_sdk/card_issuing.py +1351 -0
  21. moovio_sdk-0.3.8/src/moovio_sdk/cards.py +1469 -0
  22. moovio_sdk-0.3.8/src/moovio_sdk/disputes.py +2985 -0
  23. moovio_sdk-0.3.8/src/moovio_sdk/end_to_end_encryption.py +453 -0
  24. moovio_sdk-0.3.8/src/moovio_sdk/enriched_address.py +307 -0
  25. moovio_sdk-0.3.8/src/moovio_sdk/enriched_profile.py +235 -0
  26. moovio_sdk-0.3.8/src/moovio_sdk/fee_plans.py +1759 -0
  27. moovio_sdk-0.3.8/src/moovio_sdk/files.py +775 -0
  28. moovio_sdk-0.3.8/src/moovio_sdk/httpclient.py +136 -0
  29. moovio_sdk-0.3.8/src/moovio_sdk/industries.py +239 -0
  30. moovio_sdk-0.3.8/src/moovio_sdk/institutions.py +261 -0
  31. moovio_sdk-0.3.8/src/moovio_sdk/issuing_transactions.py +1228 -0
  32. moovio_sdk-0.3.8/src/moovio_sdk/models/__init__.py +4 -0
  33. moovio_sdk-0.3.8/src/moovio_sdk/models/components/__init__.py +1411 -0
  34. moovio_sdk-0.3.8/src/moovio_sdk/models/components/account.py +96 -0
  35. moovio_sdk-0.3.8/src/moovio_sdk/models/components/accountcapability.py +20 -0
  36. moovio_sdk-0.3.8/src/moovio_sdk/models/components/accountcountries.py +18 -0
  37. moovio_sdk-0.3.8/src/moovio_sdk/models/components/accountnameverification.py +28 -0
  38. moovio_sdk-0.3.8/src/moovio_sdk/models/components/accounttype.py +11 -0
  39. moovio_sdk-0.3.8/src/moovio_sdk/models/components/accountverificationstatus.py +19 -0
  40. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achcreditsamedaypaymentmethod.py +38 -0
  41. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achcreditstandardpaymentmethod.py +38 -0
  42. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achdebitcollectpaymentmethod.py +38 -0
  43. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achdebitfundpaymentmethod.py +38 -0
  44. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achexception.py +20 -0
  45. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achlocation.py +26 -0
  46. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achparticipant.py +93 -0
  47. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achpaymentdetails.py +30 -0
  48. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achpaymentdetailserror.py +22 -0
  49. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achpaymentsettings.py +16 -0
  50. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achreturncode.py +51 -0
  51. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achtransactiondetails.py +94 -0
  52. moovio_sdk-0.3.8/src/moovio_sdk/models/components/achtransactionstatus.py +15 -0
  53. moovio_sdk-0.3.8/src/moovio_sdk/models/components/addcapabilities.py +15 -0
  54. moovio_sdk-0.3.8/src/moovio_sdk/models/components/address.py +30 -0
  55. moovio_sdk-0.3.8/src/moovio_sdk/models/components/addresserror.py +32 -0
  56. moovio_sdk-0.3.8/src/moovio_sdk/models/components/addresssuggestion.py +34 -0
  57. moovio_sdk-0.3.8/src/moovio_sdk/models/components/addressupdate.py +32 -0
  58. moovio_sdk-0.3.8/src/moovio_sdk/models/components/adjustment.py +29 -0
  59. moovio_sdk-0.3.8/src/moovio_sdk/models/components/amount.py +26 -0
  60. moovio_sdk-0.3.8/src/moovio_sdk/models/components/amountdecimal.py +27 -0
  61. moovio_sdk-0.3.8/src/moovio_sdk/models/components/amountupdate.py +27 -0
  62. moovio_sdk-0.3.8/src/moovio_sdk/models/components/amountvalidationerror.py +17 -0
  63. moovio_sdk-0.3.8/src/moovio_sdk/models/components/applebillingcontact.py +53 -0
  64. moovio_sdk-0.3.8/src/moovio_sdk/models/components/applepayheader.py +41 -0
  65. moovio_sdk-0.3.8/src/moovio_sdk/models/components/applepaymerchantdomains.py +32 -0
  66. moovio_sdk-0.3.8/src/moovio_sdk/models/components/applepaypaymentmethod.py +33 -0
  67. moovio_sdk-0.3.8/src/moovio_sdk/models/components/applepayresponse.py +70 -0
  68. moovio_sdk-0.3.8/src/moovio_sdk/models/components/applicationscope.py +41 -0
  69. moovio_sdk-0.3.8/src/moovio_sdk/models/components/asynccreatedrefund.py +26 -0
  70. moovio_sdk-0.3.8/src/moovio_sdk/models/components/asynctransfer.py +18 -0
  71. moovio_sdk-0.3.8/src/moovio_sdk/models/components/authorizeduser.py +21 -0
  72. moovio_sdk-0.3.8/src/moovio_sdk/models/components/authtoken.py +36 -0
  73. moovio_sdk-0.3.8/src/moovio_sdk/models/components/authtokenrequest.py +46 -0
  74. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccount.py +98 -0
  75. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccountexception.py +96 -0
  76. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccountholdertype.py +11 -0
  77. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccountintegration.py +34 -0
  78. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccountpayload.py +21 -0
  79. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccountstatus.py +12 -0
  80. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccountstatusreason.py +23 -0
  81. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccounttype.py +13 -0
  82. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccountverification.py +30 -0
  83. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccountverificationcreated.py +21 -0
  84. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccountverificationmethod.py +9 -0
  85. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccountverificationstatus.py +13 -0
  86. moovio_sdk-0.3.8/src/moovio_sdk/models/components/bankaccountwaitfor.py +9 -0
  87. moovio_sdk-0.3.8/src/moovio_sdk/models/components/basicpaymentmethod.py +24 -0
  88. moovio_sdk-0.3.8/src/moovio_sdk/models/components/billablefee.py +54 -0
  89. moovio_sdk-0.3.8/src/moovio_sdk/models/components/birthdate.py +19 -0
  90. moovio_sdk-0.3.8/src/moovio_sdk/models/components/birthdateerror.py +20 -0
  91. moovio_sdk-0.3.8/src/moovio_sdk/models/components/birthdateupdate.py +20 -0
  92. moovio_sdk-0.3.8/src/moovio_sdk/models/components/birthdatevalidationerror.py +20 -0
  93. moovio_sdk-0.3.8/src/moovio_sdk/models/components/brandcolor.py +15 -0
  94. moovio_sdk-0.3.8/src/moovio_sdk/models/components/brandcolors.py +21 -0
  95. moovio_sdk-0.3.8/src/moovio_sdk/models/components/brandcolorvalidationerror.py +14 -0
  96. moovio_sdk-0.3.8/src/moovio_sdk/models/components/brandproperties.py +16 -0
  97. moovio_sdk-0.3.8/src/moovio_sdk/models/components/businessprofile.py +81 -0
  98. moovio_sdk-0.3.8/src/moovio_sdk/models/components/businesstype.py +19 -0
  99. moovio_sdk-0.3.8/src/moovio_sdk/models/components/calltoaction.py +19 -0
  100. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cancellation.py +22 -0
  101. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cancellationstatus.py +10 -0
  102. moovio_sdk-0.3.8/src/moovio_sdk/models/components/capabilitieserror.py +14 -0
  103. moovio_sdk-0.3.8/src/moovio_sdk/models/components/capability.py +56 -0
  104. moovio_sdk-0.3.8/src/moovio_sdk/models/components/capabilityid.py +18 -0
  105. moovio_sdk-0.3.8/src/moovio_sdk/models/components/capabilityrequirement.py +26 -0
  106. moovio_sdk-0.3.8/src/moovio_sdk/models/components/capabilitystatus.py +13 -0
  107. moovio_sdk-0.3.8/src/moovio_sdk/models/components/card.py +164 -0
  108. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardaccountupdater.py +28 -0
  109. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardacquiringdispute.py +26 -0
  110. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardacquiringmodel.py +11 -0
  111. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardacquiringrefund.py +42 -0
  112. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardaddress.py +32 -0
  113. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardbrand.py +14 -0
  114. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardexpiration.py +20 -0
  115. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardexpirationerror.py +17 -0
  116. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardissuingnetwork.py +12 -0
  117. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardpaymentdetails.py +23 -0
  118. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardpaymentdetailserror.py +17 -0
  119. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardpaymentpaymentmethod.py +33 -0
  120. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardpaymentsettings.py +23 -0
  121. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardtransactiondetails.py +94 -0
  122. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardtransactionfailurecode.py +32 -0
  123. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardtransactionstatus.py +15 -0
  124. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardtype.py +13 -0
  125. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardupdatereason.py +16 -0
  126. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardverification.py +38 -0
  127. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardverificationresult.py +12 -0
  128. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardvolumedistribution.py +29 -0
  129. moovio_sdk-0.3.8/src/moovio_sdk/models/components/cardvolumedistributionerror.py +32 -0
  130. moovio_sdk-0.3.8/src/moovio_sdk/models/components/collectionpaymentmethodtype.py +12 -0
  131. moovio_sdk-0.3.8/src/moovio_sdk/models/components/colorsvalidationerror.py +21 -0
  132. moovio_sdk-0.3.8/src/moovio_sdk/models/components/completebankaccountverification.py +15 -0
  133. moovio_sdk-0.3.8/src/moovio_sdk/models/components/completedmicrodeposits.py +14 -0
  134. moovio_sdk-0.3.8/src/moovio_sdk/models/components/completemicrodeposits.py +20 -0
  135. moovio_sdk-0.3.8/src/moovio_sdk/models/components/countrieserrors.py +14 -0
  136. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createaccount.py +78 -0
  137. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createaccounterror.py +44 -0
  138. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createaccountsettings.py +40 -0
  139. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createapplepaysession.py +21 -0
  140. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createauthorizeduser.py +26 -0
  141. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createauthorizedusererror.py +24 -0
  142. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createauthorizeduserupdate.py +28 -0
  143. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createbusinesserror.py +88 -0
  144. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createbusinessprofile.py +69 -0
  145. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createevidencefilemultipart.py +63 -0
  146. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createevidencetext.py +20 -0
  147. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createfeeplanagreement.py +14 -0
  148. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createindividualerror.py +72 -0
  149. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createindividualprofile.py +37 -0
  150. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createpaymentlink.py +95 -0
  151. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createprofile.py +22 -0
  152. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createprofileerror.py +19 -0
  153. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createrefund.py +26 -0
  154. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createrefundresponse.py +18 -0
  155. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createrepresentative.py +50 -0
  156. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createreversal.py +15 -0
  157. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createsweepconfig.py +41 -0
  158. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createterminalapplication.py +42 -0
  159. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createtransfer.py +49 -0
  160. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createtransferdestination.py +37 -0
  161. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createtransferdestinationach.py +26 -0
  162. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createtransferdestinationcard.py +19 -0
  163. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createtransferoptions.py +24 -0
  164. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createtransfersource.py +48 -0
  165. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createtransfersourceach.py +40 -0
  166. moovio_sdk-0.3.8/src/moovio_sdk/models/components/createtransfersourcecard.py +35 -0
  167. moovio_sdk-0.3.8/src/moovio_sdk/models/components/customersupport.py +33 -0
  168. moovio_sdk-0.3.8/src/moovio_sdk/models/components/customersupporterror.py +25 -0
  169. moovio_sdk-0.3.8/src/moovio_sdk/models/components/debitholdperiod.py +12 -0
  170. moovio_sdk-0.3.8/src/moovio_sdk/models/components/disbursementpaymentmethodtype.py +13 -0
  171. moovio_sdk-0.3.8/src/moovio_sdk/models/components/displayoptionserror.py +23 -0
  172. moovio_sdk-0.3.8/src/moovio_sdk/models/components/dispute.py +76 -0
  173. moovio_sdk-0.3.8/src/moovio_sdk/models/components/disputeevidenceresponse.py +49 -0
  174. moovio_sdk-0.3.8/src/moovio_sdk/models/components/disputephase.py +13 -0
  175. moovio_sdk-0.3.8/src/moovio_sdk/models/components/disputestatus.py +20 -0
  176. moovio_sdk-0.3.8/src/moovio_sdk/models/components/disputetransferdetails.py +16 -0
  177. moovio_sdk-0.3.8/src/moovio_sdk/models/components/document.py +37 -0
  178. moovio_sdk-0.3.8/src/moovio_sdk/models/components/documenttype.py +13 -0
  179. moovio_sdk-0.3.8/src/moovio_sdk/models/components/domesticpullfromcard.py +12 -0
  180. moovio_sdk-0.3.8/src/moovio_sdk/models/components/domesticpushtocard.py +13 -0
  181. moovio_sdk-0.3.8/src/moovio_sdk/models/components/e2eetoken.py +25 -0
  182. moovio_sdk-0.3.8/src/moovio_sdk/models/components/e2eetokenupdate.py +26 -0
  183. moovio_sdk-0.3.8/src/moovio_sdk/models/components/end2endencryptionerror.py +14 -0
  184. moovio_sdk-0.3.8/src/moovio_sdk/models/components/enrichedaddressresponse.py +15 -0
  185. moovio_sdk-0.3.8/src/moovio_sdk/models/components/enrichedbusinessprofile.py +37 -0
  186. moovio_sdk-0.3.8/src/moovio_sdk/models/components/enrichedbusinessresponse.py +18 -0
  187. moovio_sdk-0.3.8/src/moovio_sdk/models/components/enrichedindustries.py +15 -0
  188. moovio_sdk-0.3.8/src/moovio_sdk/models/components/enrichedindustry.py +32 -0
  189. moovio_sdk-0.3.8/src/moovio_sdk/models/components/enrichedindustrycodes.py +17 -0
  190. moovio_sdk-0.3.8/src/moovio_sdk/models/components/evidencetextresponse.py +28 -0
  191. moovio_sdk-0.3.8/src/moovio_sdk/models/components/evidencetype.py +15 -0
  192. moovio_sdk-0.3.8/src/moovio_sdk/models/components/evidenceuploadresponse.py +50 -0
  193. moovio_sdk-0.3.8/src/moovio_sdk/models/components/facilitatorfee.py +48 -0
  194. moovio_sdk-0.3.8/src/moovio_sdk/models/components/feecategory.py +16 -0
  195. moovio_sdk-0.3.8/src/moovio_sdk/models/components/feemodel.py +12 -0
  196. moovio_sdk-0.3.8/src/moovio_sdk/models/components/feeplan.py +43 -0
  197. moovio_sdk-0.3.8/src/moovio_sdk/models/components/feeplanagreement.py +51 -0
  198. moovio_sdk-0.3.8/src/moovio_sdk/models/components/feeplanagreementstatus.py +9 -0
  199. moovio_sdk-0.3.8/src/moovio_sdk/models/components/feeproperties.py +49 -0
  200. moovio_sdk-0.3.8/src/moovio_sdk/models/components/filedetails.py +55 -0
  201. moovio_sdk-0.3.8/src/moovio_sdk/models/components/filepurpose.py +15 -0
  202. moovio_sdk-0.3.8/src/moovio_sdk/models/components/filestatus.py +12 -0
  203. moovio_sdk-0.3.8/src/moovio_sdk/models/components/fileuploadrequestmultipart.py +69 -0
  204. moovio_sdk-0.3.8/src/moovio_sdk/models/components/financialinstitutions.py +18 -0
  205. moovio_sdk-0.3.8/src/moovio_sdk/models/components/fulfillmentdetails.py +24 -0
  206. moovio_sdk-0.3.8/src/moovio_sdk/models/components/fulfillmentdetailserror.py +20 -0
  207. moovio_sdk-0.3.8/src/moovio_sdk/models/components/fullissuedcard.py +92 -0
  208. moovio_sdk-0.3.8/src/moovio_sdk/models/components/generatedby.py +39 -0
  209. moovio_sdk-0.3.8/src/moovio_sdk/models/components/generatedbyaccountid.py +15 -0
  210. moovio_sdk-0.3.8/src/moovio_sdk/models/components/generatedbybankaccountid.py +17 -0
  211. moovio_sdk-0.3.8/src/moovio_sdk/models/components/generatedbycardid.py +15 -0
  212. moovio_sdk-0.3.8/src/moovio_sdk/models/components/generatedbydisputeid.py +15 -0
  213. moovio_sdk-0.3.8/src/moovio_sdk/models/components/generatedbytransferid.py +15 -0
  214. moovio_sdk-0.3.8/src/moovio_sdk/models/components/governmentid.py +40 -0
  215. moovio_sdk-0.3.8/src/moovio_sdk/models/components/governmentiderror.py +40 -0
  216. moovio_sdk-0.3.8/src/moovio_sdk/models/components/granttype.py +15 -0
  217. moovio_sdk-0.3.8/src/moovio_sdk/models/components/incurredfee.py +44 -0
  218. moovio_sdk-0.3.8/src/moovio_sdk/models/components/individualname.py +32 -0
  219. moovio_sdk-0.3.8/src/moovio_sdk/models/components/individualnameerror.py +24 -0
  220. moovio_sdk-0.3.8/src/moovio_sdk/models/components/individualnameupdate.py +32 -0
  221. moovio_sdk-0.3.8/src/moovio_sdk/models/components/individualprofile.py +45 -0
  222. moovio_sdk-0.3.8/src/moovio_sdk/models/components/industrycodes.py +20 -0
  223. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuedcard.py +78 -0
  224. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuedcardauthorization.py +53 -0
  225. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuedcardauthorizationevent.py +37 -0
  226. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuedcardauthorizationeventresult.py +12 -0
  227. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuedcardeventtype.py +15 -0
  228. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuedcardformfactor.py +10 -0
  229. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuedcardstate.py +19 -0
  230. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuedcardtransaction.py +42 -0
  231. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuingauthorizationstatus.py +14 -0
  232. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuingcontrols.py +25 -0
  233. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuingcontrolserror.py +22 -0
  234. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuingintervallimit.py +10 -0
  235. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuingmerchantdata.py +47 -0
  236. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuingvelocitylimit.py +21 -0
  237. moovio_sdk-0.3.8/src/moovio_sdk/models/components/issuingvelocitylimiterror.py +17 -0
  238. moovio_sdk-0.3.8/src/moovio_sdk/models/components/jsonwebkey.py +103 -0
  239. moovio_sdk-0.3.8/src/moovio_sdk/models/components/linkapplepay.py +54 -0
  240. moovio_sdk-0.3.8/src/moovio_sdk/models/components/linkapplepaymentdata.py +51 -0
  241. moovio_sdk-0.3.8/src/moovio_sdk/models/components/linkapplepaymentmethod.py +38 -0
  242. moovio_sdk-0.3.8/src/moovio_sdk/models/components/linkapplepaytoken.py +63 -0
  243. moovio_sdk-0.3.8/src/moovio_sdk/models/components/linkbankaccount.py +26 -0
  244. moovio_sdk-0.3.8/src/moovio_sdk/models/components/linkcard.py +54 -0
  245. moovio_sdk-0.3.8/src/moovio_sdk/models/components/linkcardwaitfor.py +8 -0
  246. moovio_sdk-0.3.8/src/moovio_sdk/models/components/linkedapplepaypaymentmethod.py +30 -0
  247. moovio_sdk-0.3.8/src/moovio_sdk/models/components/listfeesfetchrequest.py +19 -0
  248. moovio_sdk-0.3.8/src/moovio_sdk/models/components/manualtermsofservice.py +34 -0
  249. moovio_sdk-0.3.8/src/moovio_sdk/models/components/manualtermsofserviceupdate.py +41 -0
  250. moovio_sdk-0.3.8/src/moovio_sdk/models/components/microdepositstatus.py +8 -0
  251. moovio_sdk-0.3.8/src/moovio_sdk/models/components/mode.py +11 -0
  252. moovio_sdk-0.3.8/src/moovio_sdk/models/components/moovfeedetails.py +36 -0
  253. moovio_sdk-0.3.8/src/moovio_sdk/models/components/moovwalletpaymentmethod.py +31 -0
  254. moovio_sdk-0.3.8/src/moovio_sdk/models/components/mxauthorizationcode.py +26 -0
  255. moovio_sdk-0.3.8/src/moovio_sdk/models/components/mxpayload.py +46 -0
  256. moovio_sdk-0.3.8/src/moovio_sdk/models/components/occurrence.py +44 -0
  257. moovio_sdk-0.3.8/src/moovio_sdk/models/components/occurrencesresponse.py +80 -0
  258. moovio_sdk-0.3.8/src/moovio_sdk/models/components/occurrencestatus.py +12 -0
  259. moovio_sdk-0.3.8/src/moovio_sdk/models/components/onboardinginvite.py +91 -0
  260. moovio_sdk-0.3.8/src/moovio_sdk/models/components/onboardinginviterequest.py +57 -0
  261. moovio_sdk-0.3.8/src/moovio_sdk/models/components/onboardingpartneraccount.py +31 -0
  262. moovio_sdk-0.3.8/src/moovio_sdk/models/components/partnerpricing.py +46 -0
  263. moovio_sdk-0.3.8/src/moovio_sdk/models/components/partnerpricingagreement.py +56 -0
  264. moovio_sdk-0.3.8/src/moovio_sdk/models/components/patchaccount.py +138 -0
  265. moovio_sdk-0.3.8/src/moovio_sdk/models/components/patchaccounterror.py +38 -0
  266. moovio_sdk-0.3.8/src/moovio_sdk/models/components/patchbusiness.py +72 -0
  267. moovio_sdk-0.3.8/src/moovio_sdk/models/components/patchindividual.py +43 -0
  268. moovio_sdk-0.3.8/src/moovio_sdk/models/components/patchprofile.py +29 -0
  269. moovio_sdk-0.3.8/src/moovio_sdk/models/components/patchsweepconfig.py +147 -0
  270. moovio_sdk-0.3.8/src/moovio_sdk/models/components/patchtransfer.py +51 -0
  271. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentdetailserror.py +35 -0
  272. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentlink.py +125 -0
  273. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentlinkcustomeroptions.py +31 -0
  274. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentlinkdisplayoptions.py +39 -0
  275. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentlinkdisplayoptionsupdate.py +42 -0
  276. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentlinkpaymentdetails.py +40 -0
  277. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentlinkpaymentdetailsupdate.py +41 -0
  278. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentlinkpayoutdetails.py +32 -0
  279. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentlinkpayoutdetailsupdate.py +33 -0
  280. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentlinkstatus.py +11 -0
  281. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentmethod.py +82 -0
  282. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentmethodsbankaccount.py +65 -0
  283. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentmethodscard.py +121 -0
  284. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentmethodswallet.py +14 -0
  285. moovio_sdk-0.3.8/src/moovio_sdk/models/components/paymentmethodtype.py +19 -0
  286. moovio_sdk-0.3.8/src/moovio_sdk/models/components/payoutdetailserror.py +21 -0
  287. moovio_sdk-0.3.8/src/moovio_sdk/models/components/payoutrecipient.py +23 -0
  288. moovio_sdk-0.3.8/src/moovio_sdk/models/components/payoutrecipienterror.py +14 -0
  289. moovio_sdk-0.3.8/src/moovio_sdk/models/components/payoutrecipientupdate.py +24 -0
  290. moovio_sdk-0.3.8/src/moovio_sdk/models/components/phonenumber.py +18 -0
  291. moovio_sdk-0.3.8/src/moovio_sdk/models/components/phonenumbererror.py +18 -0
  292. moovio_sdk-0.3.8/src/moovio_sdk/models/components/plaidintegration.py +39 -0
  293. moovio_sdk-0.3.8/src/moovio_sdk/models/components/plaidlinkintegration.py +36 -0
  294. moovio_sdk-0.3.8/src/moovio_sdk/models/components/plaidlinkpayload.py +45 -0
  295. moovio_sdk-0.3.8/src/moovio_sdk/models/components/plaidpayload.py +42 -0
  296. moovio_sdk-0.3.8/src/moovio_sdk/models/components/primaryregulator.py +13 -0
  297. moovio_sdk-0.3.8/src/moovio_sdk/models/components/profile.py +27 -0
  298. moovio_sdk-0.3.8/src/moovio_sdk/models/components/pullfromcardpaymentmethod.py +33 -0
  299. moovio_sdk-0.3.8/src/moovio_sdk/models/components/pushtocardpaymentmethod.py +33 -0
  300. moovio_sdk-0.3.8/src/moovio_sdk/models/components/qrcode.py +16 -0
  301. moovio_sdk-0.3.8/src/moovio_sdk/models/components/receiptkind.py +10 -0
  302. moovio_sdk-0.3.8/src/moovio_sdk/models/components/receiptrequest.py +75 -0
  303. moovio_sdk-0.3.8/src/moovio_sdk/models/components/receiptresponse.py +95 -0
  304. moovio_sdk-0.3.8/src/moovio_sdk/models/components/recur.py +40 -0
  305. moovio_sdk-0.3.8/src/moovio_sdk/models/components/refundcarddetails.py +44 -0
  306. moovio_sdk-0.3.8/src/moovio_sdk/models/components/refundcardstatus.py +12 -0
  307. moovio_sdk-0.3.8/src/moovio_sdk/models/components/refundstatus.py +11 -0
  308. moovio_sdk-0.3.8/src/moovio_sdk/models/components/registerapplepaymerchantdomains.py +22 -0
  309. moovio_sdk-0.3.8/src/moovio_sdk/models/components/representative.py +71 -0
  310. moovio_sdk-0.3.8/src/moovio_sdk/models/components/representativeresponsibilities.py +42 -0
  311. moovio_sdk-0.3.8/src/moovio_sdk/models/components/representativeresponsibilitieserror.py +26 -0
  312. moovio_sdk-0.3.8/src/moovio_sdk/models/components/requestcard.py +44 -0
  313. moovio_sdk-0.3.8/src/moovio_sdk/models/components/requirementerror.py +24 -0
  314. moovio_sdk-0.3.8/src/moovio_sdk/models/components/requirementerrorcode.py +25 -0
  315. moovio_sdk-0.3.8/src/moovio_sdk/models/components/requirementid.py +71 -0
  316. moovio_sdk-0.3.8/src/moovio_sdk/models/components/returnpolicytype.py +11 -0
  317. moovio_sdk-0.3.8/src/moovio_sdk/models/components/reversal.py +23 -0
  318. moovio_sdk-0.3.8/src/moovio_sdk/models/components/reversedwithcancellation.py +14 -0
  319. moovio_sdk-0.3.8/src/moovio_sdk/models/components/reversedwithrefund.py +16 -0
  320. moovio_sdk-0.3.8/src/moovio_sdk/models/components/revoketokenrequest.py +40 -0
  321. moovio_sdk-0.3.8/src/moovio_sdk/models/components/rtpcreditpaymentmethod.py +38 -0
  322. moovio_sdk-0.3.8/src/moovio_sdk/models/components/rtpfailurecode.py +19 -0
  323. moovio_sdk-0.3.8/src/moovio_sdk/models/components/rtprejectioncode.py +25 -0
  324. moovio_sdk-0.3.8/src/moovio_sdk/models/components/rtptransactiondetails.py +56 -0
  325. moovio_sdk-0.3.8/src/moovio_sdk/models/components/rtptransactionstatus.py +13 -0
  326. moovio_sdk-0.3.8/src/moovio_sdk/models/components/runtransfer.py +34 -0
  327. moovio_sdk-0.3.8/src/moovio_sdk/models/components/schedulepaymentmethod.py +56 -0
  328. moovio_sdk-0.3.8/src/moovio_sdk/models/components/scheduleresponse.py +60 -0
  329. moovio_sdk-0.3.8/src/moovio_sdk/models/components/seccode.py +13 -0
  330. moovio_sdk-0.3.8/src/moovio_sdk/models/components/security.py +32 -0
  331. moovio_sdk-0.3.8/src/moovio_sdk/models/components/sentreceipt.py +27 -0
  332. moovio_sdk-0.3.8/src/moovio_sdk/models/components/settings.py +30 -0
  333. moovio_sdk-0.3.8/src/moovio_sdk/models/components/sourcedestinationoptions.py +20 -0
  334. moovio_sdk-0.3.8/src/moovio_sdk/models/components/sweep.py +80 -0
  335. moovio_sdk-0.3.8/src/moovio_sdk/models/components/sweepconfig.py +81 -0
  336. moovio_sdk-0.3.8/src/moovio_sdk/models/components/sweepconfigpaymentmethod.py +31 -0
  337. moovio_sdk-0.3.8/src/moovio_sdk/models/components/sweepconfigstatus.py +9 -0
  338. moovio_sdk-0.3.8/src/moovio_sdk/models/components/sweepstatus.py +13 -0
  339. moovio_sdk-0.3.8/src/moovio_sdk/models/components/taxid.py +25 -0
  340. moovio_sdk-0.3.8/src/moovio_sdk/models/components/taxidupdate.py +26 -0
  341. moovio_sdk-0.3.8/src/moovio_sdk/models/components/terminalapplication.py +55 -0
  342. moovio_sdk-0.3.8/src/moovio_sdk/models/components/terminalapplicationplatform.py +12 -0
  343. moovio_sdk-0.3.8/src/moovio_sdk/models/components/terminalapplicationstatus.py +13 -0
  344. moovio_sdk-0.3.8/src/moovio_sdk/models/components/termsofservice.py +26 -0
  345. moovio_sdk-0.3.8/src/moovio_sdk/models/components/termsofserviceerror.py +39 -0
  346. moovio_sdk-0.3.8/src/moovio_sdk/models/components/termsofservicetoken.py +17 -0
  347. moovio_sdk-0.3.8/src/moovio_sdk/models/components/termsofservicetokenupdate.py +18 -0
  348. moovio_sdk-0.3.8/src/moovio_sdk/models/components/tokentype.py +10 -0
  349. moovio_sdk-0.3.8/src/moovio_sdk/models/components/transactionsource.py +16 -0
  350. moovio_sdk-0.3.8/src/moovio_sdk/models/components/transfer.py +126 -0
  351. moovio_sdk-0.3.8/src/moovio_sdk/models/components/transferaccount.py +20 -0
  352. moovio_sdk-0.3.8/src/moovio_sdk/models/components/transferdestination.py +83 -0
  353. moovio_sdk-0.3.8/src/moovio_sdk/models/components/transferfailurereason.py +14 -0
  354. moovio_sdk-0.3.8/src/moovio_sdk/models/components/transferoptions.py +23 -0
  355. moovio_sdk-0.3.8/src/moovio_sdk/models/components/transferresponse.py +15 -0
  356. moovio_sdk-0.3.8/src/moovio_sdk/models/components/transfersource.py +80 -0
  357. moovio_sdk-0.3.8/src/moovio_sdk/models/components/transferstatus.py +16 -0
  358. moovio_sdk-0.3.8/src/moovio_sdk/models/components/transferwaitfor.py +8 -0
  359. moovio_sdk-0.3.8/src/moovio_sdk/models/components/underwriting.py +56 -0
  360. moovio_sdk-0.3.8/src/moovio_sdk/models/components/underwritingstatus.py +16 -0
  361. moovio_sdk-0.3.8/src/moovio_sdk/models/components/updateapplepaymerchantdomains.py +26 -0
  362. moovio_sdk-0.3.8/src/moovio_sdk/models/components/updatebrand.py +15 -0
  363. moovio_sdk-0.3.8/src/moovio_sdk/models/components/updatecard.py +51 -0
  364. moovio_sdk-0.3.8/src/moovio_sdk/models/components/updatecardaddress.py +32 -0
  365. moovio_sdk-0.3.8/src/moovio_sdk/models/components/updatecardexpiration.py +17 -0
  366. moovio_sdk-0.3.8/src/moovio_sdk/models/components/updatecolor.py +14 -0
  367. moovio_sdk-0.3.8/src/moovio_sdk/models/components/updatecolors.py +18 -0
  368. moovio_sdk-0.3.8/src/moovio_sdk/models/components/updateevidence.py +23 -0
  369. moovio_sdk-0.3.8/src/moovio_sdk/models/components/updateissuedcard.py +44 -0
  370. moovio_sdk-0.3.8/src/moovio_sdk/models/components/updatepaymentlink.py +98 -0
  371. moovio_sdk-0.3.8/src/moovio_sdk/models/components/updaterepresentative.py +224 -0
  372. moovio_sdk-0.3.8/src/moovio_sdk/models/components/updateunderwriting.py +43 -0
  373. moovio_sdk-0.3.8/src/moovio_sdk/models/components/upsertschedule.py +26 -0
  374. moovio_sdk-0.3.8/src/moovio_sdk/models/components/verification.py +54 -0
  375. moovio_sdk-0.3.8/src/moovio_sdk/models/components/verificationstatus.py +17 -0
  376. moovio_sdk-0.3.8/src/moovio_sdk/models/components/verificationstatusdetail.py +23 -0
  377. moovio_sdk-0.3.8/src/moovio_sdk/models/components/volumebycustomertype.py +21 -0
  378. moovio_sdk-0.3.8/src/moovio_sdk/models/components/volumebycustomertypeerror.py +22 -0
  379. moovio_sdk-0.3.8/src/moovio_sdk/models/components/wallet.py +27 -0
  380. moovio_sdk-0.3.8/src/moovio_sdk/models/components/walletavailablebalance.py +30 -0
  381. moovio_sdk-0.3.8/src/moovio_sdk/models/components/wallettransaction.py +114 -0
  382. moovio_sdk-0.3.8/src/moovio_sdk/models/components/wallettransactionsourcetype.py +13 -0
  383. moovio_sdk-0.3.8/src/moovio_sdk/models/components/wallettransactionstatus.py +11 -0
  384. moovio_sdk-0.3.8/src/moovio_sdk/models/components/wallettransactiontype.py +32 -0
  385. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/__init__.py +155 -0
  386. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/addcapabilitieserror.py +23 -0
  387. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/apierror.py +22 -0
  388. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/assigncountrieserror.py +20 -0
  389. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/authtokenrequesterror.py +22 -0
  390. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/bankaccountvalidationerror.py +30 -0
  391. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/brandvalidationerror.py +23 -0
  392. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/cardacquiringrefund.py +44 -0
  393. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/createaccount.py +24 -0
  394. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/createpaymentlinkerror.py +46 -0
  395. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/createsweepconfigerror.py +40 -0
  396. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/feeplanagreementerror.py +22 -0
  397. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/fileuploadvalidationerror.py +35 -0
  398. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/filevalidationerror.py +28 -0
  399. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/genericerror.py +19 -0
  400. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/linkapplepayerror.py +36 -0
  401. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/linkcarderror.py +47 -0
  402. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/microdepositvalidationerror.py +20 -0
  403. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/onboardinginviteerror.py +34 -0
  404. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/patchsweepconfigerror.py +38 -0
  405. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/receiptvalidationerror.py +40 -0
  406. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/refundvalidationerror.py +23 -0
  407. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/representativevalidationerror.py +68 -0
  408. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/requestcarderror.py +42 -0
  409. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/reversalvalidationerror.py +20 -0
  410. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/revoketokenrequesterror.py +22 -0
  411. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/schedulevalidationerror.py +24 -0
  412. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/terminalapplicationerror.py +30 -0
  413. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/transfer.py +108 -0
  414. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/transferoptionsvalidationerror.py +24 -0
  415. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/transfervalidationerror.py +49 -0
  416. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/updateaccount.py +24 -0
  417. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/updatecarderror.py +43 -0
  418. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/updateissuedcarderror.py +32 -0
  419. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/updatepaymentlinkerror.py +36 -0
  420. moovio_sdk-0.3.8/src/moovio_sdk/models/errors/updateunderwritingerror.py +70 -0
  421. moovio_sdk-0.3.8/src/moovio_sdk/models/internal/__init__.py +6 -0
  422. moovio_sdk-0.3.8/src/moovio_sdk/models/internal/globals.py +40 -0
  423. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/__init__.py +1824 -0
  424. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/acceptdispute.py +71 -0
  425. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/assignaccountcountries.py +75 -0
  426. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/cancelschedule.py +67 -0
  427. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/completebankaccountverification.py +85 -0
  428. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/completemicrodeposits.py +87 -0
  429. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createaccesstoken.py +52 -0
  430. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createaccount.py +52 -0
  431. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createapplepaysession.py +81 -0
  432. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createbrand.py +75 -0
  433. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createcancellation.py +75 -0
  434. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createfeeplanagreements.py +80 -0
  435. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createonboardinginvite.py +52 -0
  436. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createpaymentlink.py +78 -0
  437. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createreceipts.py +52 -0
  438. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createrepresentative.py +80 -0
  439. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createreversal.py +98 -0
  440. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createschedule.py +78 -0
  441. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createsweepconfig.py +78 -0
  442. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createterminalapplication.py +54 -0
  443. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createtransfer.py +125 -0
  444. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/createtransferoptions.py +52 -0
  445. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/deletedisputeevidencefile.py +74 -0
  446. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/deleterepresentative.py +71 -0
  447. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/deleteterminalapplication.py +60 -0
  448. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/disablebankaccount.py +67 -0
  449. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/disablecapability.py +76 -0
  450. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/disablecard.py +67 -0
  451. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/disablepaymentlink.py +67 -0
  452. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/disconnectaccount.py +60 -0
  453. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/generateendtoendkey.py +60 -0
  454. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getaccount.py +64 -0
  455. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getaccountcountries.py +64 -0
  456. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getadjustment.py +71 -0
  457. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getapplepaymerchantdomains.py +68 -0
  458. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getavatar.py +66 -0
  459. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getbankaccount.py +71 -0
  460. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getbankaccountverification.py +73 -0
  461. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getbrand.py +64 -0
  462. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getcancellation.py +84 -0
  463. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getcapability.py +82 -0
  464. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getcard.py +71 -0
  465. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getdispute.py +71 -0
  466. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getdisputeevidence.py +80 -0
  467. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getdisputeevidencedata.py +90 -0
  468. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getenrichmentaddress.py +178 -0
  469. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getenrichmentprofile.py +64 -0
  470. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getfiledetails.py +71 -0
  471. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getfullissuedcard.py +73 -0
  472. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getissuedcard.py +73 -0
  473. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getissuedcardauthorization.py +75 -0
  474. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getissuedcardtransaction.py +75 -0
  475. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getmerchantprocessingagreement.py +64 -0
  476. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getonboardinginvite.py +62 -0
  477. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getpaymentlink.py +71 -0
  478. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getpaymentlinkqrcode.py +84 -0
  479. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getpaymentmethod.py +71 -0
  480. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getrefund.py +84 -0
  481. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getrepresentative.py +75 -0
  482. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getscheduledoccurrence.py +92 -0
  483. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getschedules.py +71 -0
  484. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getsweep.py +78 -0
  485. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getsweepconfig.py +71 -0
  486. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getterminalapplication.py +66 -0
  487. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/gettermsofservicetoken.py +75 -0
  488. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/gettransfer.py +73 -0
  489. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getunderwriting.py +64 -0
  490. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getwallet.py +71 -0
  491. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/getwallettransaction.py +80 -0
  492. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/initiatebankaccountverification.py +89 -0
  493. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/initiatemicrodeposits.py +67 -0
  494. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/initiaterefund.py +131 -0
  495. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/linkapplepaytoken.py +80 -0
  496. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/linkbankaccount.py +96 -0
  497. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/linkcard.py +96 -0
  498. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listaccounts.py +171 -0
  499. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listadjustments.py +78 -0
  500. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listbankaccounts.py +64 -0
  501. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listcapabilities.py +64 -0
  502. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listcards.py +64 -0
  503. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listdisputeevidence.py +73 -0
  504. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listdisputes.py +172 -0
  505. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listfeeplanagreements.py +101 -0
  506. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listfeeplans.py +78 -0
  507. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listfeesfetch.py +80 -0
  508. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listfiles.py +64 -0
  509. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listindustries.py +62 -0
  510. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listinstitutions.py +92 -0
  511. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listissuedcardauthorizationevents.py +94 -0
  512. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listissuedcardauthorizations.py +126 -0
  513. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listissuedcards.py +94 -0
  514. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listissuedcardtransactions.py +113 -0
  515. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listonboardinginvites.py +60 -0
  516. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listpartnerpricing.py +78 -0
  517. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listpartnerpricingagreements.py +101 -0
  518. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listpaymentlinks.py +64 -0
  519. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listpaymentmethods.py +98 -0
  520. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listreceipts.py +65 -0
  521. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listrefunds.py +75 -0
  522. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listrepresentatives.py +66 -0
  523. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listschedules.py +81 -0
  524. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listsweepconfigs.py +64 -0
  525. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listsweeps.py +108 -0
  526. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listterminalapplications.py +62 -0
  527. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listtransfers.py +145 -0
  528. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listwallets.py +64 -0
  529. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/listwallettransactions.py +189 -0
  530. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/ping.py +56 -0
  531. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/registerapplepaymerchantdomains.py +80 -0
  532. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/requestcapabilities.py +78 -0
  533. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/requestcard.py +80 -0
  534. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/retrievefees.py +117 -0
  535. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/revokeaccesstoken.py +48 -0
  536. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/revokeonboardinginvite.py +58 -0
  537. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/submitdisputeevidence.py +71 -0
  538. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/testendtoendtoken.py +56 -0
  539. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/updateaccount.py +78 -0
  540. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/updateapplepaymerchantdomains.py +78 -0
  541. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/updatebrand.py +78 -0
  542. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/updatecard.py +85 -0
  543. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/updatedisputeevidence.py +92 -0
  544. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/updateissuedcard.py +81 -0
  545. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/updatepaymentlink.py +85 -0
  546. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/updaterepresentative.py +89 -0
  547. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/updateschedule.py +85 -0
  548. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/updatesweepconfig.py +85 -0
  549. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/updatetransfer.py +87 -0
  550. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/uploaddisputeevidencefile.py +87 -0
  551. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/uploaddisputeevidencetext.py +85 -0
  552. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/uploadfile.py +80 -0
  553. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/upsertbrand.py +75 -0
  554. moovio_sdk-0.3.8/src/moovio_sdk/models/operations/upsertunderwriting.py +78 -0
  555. moovio_sdk-0.3.8/src/moovio_sdk/onboarding.py +965 -0
  556. moovio_sdk-0.3.8/src/moovio_sdk/payment_links.py +1694 -0
  557. moovio_sdk-0.3.8/src/moovio_sdk/payment_methods.py +475 -0
  558. moovio_sdk-0.3.8/src/moovio_sdk/ping.py +233 -0
  559. moovio_sdk-0.3.8/src/moovio_sdk/py.typed +1 -0
  560. moovio_sdk-0.3.8/src/moovio_sdk/receipts.py +507 -0
  561. moovio_sdk-0.3.8/src/moovio_sdk/representatives.py +1513 -0
  562. moovio_sdk-0.3.8/src/moovio_sdk/scheduling.py +1565 -0
  563. moovio_sdk-0.3.8/src/moovio_sdk/sdk.py +242 -0
  564. moovio_sdk-0.3.8/src/moovio_sdk/sdkconfiguration.py +59 -0
  565. moovio_sdk-0.3.8/src/moovio_sdk/sweeps.py +1617 -0
  566. moovio_sdk-0.3.8/src/moovio_sdk/terminal_applications.py +1013 -0
  567. moovio_sdk-0.3.8/src/moovio_sdk/transfers.py +3040 -0
  568. moovio_sdk-0.3.8/src/moovio_sdk/types/__init__.py +21 -0
  569. moovio_sdk-0.3.8/src/moovio_sdk/types/basemodel.py +39 -0
  570. moovio_sdk-0.3.8/src/moovio_sdk/underwriting.py +581 -0
  571. moovio_sdk-0.3.8/src/moovio_sdk/utils/__init__.py +101 -0
  572. moovio_sdk-0.3.8/src/moovio_sdk/utils/annotations.py +55 -0
  573. moovio_sdk-0.3.8/src/moovio_sdk/utils/enums.py +34 -0
  574. moovio_sdk-0.3.8/src/moovio_sdk/utils/eventstreaming.py +238 -0
  575. moovio_sdk-0.3.8/src/moovio_sdk/utils/forms.py +202 -0
  576. moovio_sdk-0.3.8/src/moovio_sdk/utils/headers.py +136 -0
  577. moovio_sdk-0.3.8/src/moovio_sdk/utils/logger.py +27 -0
  578. moovio_sdk-0.3.8/src/moovio_sdk/utils/metadata.py +118 -0
  579. moovio_sdk-0.3.8/src/moovio_sdk/utils/queryparams.py +205 -0
  580. moovio_sdk-0.3.8/src/moovio_sdk/utils/requestbodies.py +66 -0
  581. moovio_sdk-0.3.8/src/moovio_sdk/utils/retries.py +217 -0
  582. moovio_sdk-0.3.8/src/moovio_sdk/utils/security.py +195 -0
  583. moovio_sdk-0.3.8/src/moovio_sdk/utils/serializers.py +215 -0
  584. moovio_sdk-0.3.8/src/moovio_sdk/utils/url.py +155 -0
  585. moovio_sdk-0.3.8/src/moovio_sdk/utils/values.py +137 -0
  586. moovio_sdk-0.3.8/src/moovio_sdk/wallet_transactions.py +558 -0
  587. moovio_sdk-0.3.8/src/moovio_sdk/wallets.py +465 -0
@@ -0,0 +1,1920 @@
1
+ Metadata-Version: 2.3
2
+ Name: moovio_sdk
3
+ Version: 0.3.8
4
+ Summary: Python Client SDK Generated by Speakeasy.
5
+ Author: Speakeasy
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)
14
+ Requires-Dist: httpx (>=0.28.1)
15
+ Requires-Dist: pydantic (>=2.10.3)
16
+ Requires-Dist: python-dateutil (>=2.8.2)
17
+ Requires-Dist: typing-inspect (>=0.9.0)
18
+ Project-URL: Documentation, https://docs.moov.io/
19
+ Project-URL: Homepage, https://moov.io/
20
+ Project-URL: Repository, https://github.com/moovfinancial/moov-python.git
21
+ Description-Content-Type: text/markdown
22
+
23
+ # Moov Python
24
+
25
+ The official SDK for interacting with the Moov API.
26
+
27
+ <div align="left">
28
+ <a href="https://www.speakeasy.com/?utm_source=moovio-sdk&utm_campaign=python"><img src="https://custom-icon-badges.demolab.com/badge/-Built%20By%20Speakeasy-212015?style=for-the-badge&logoColor=FBE331&logo=speakeasy&labelColor=545454" /></a>
29
+ <a href="https://opensource.org/licenses/MIT">
30
+ <img src="https://img.shields.io/badge/License-MIT-blue.svg" style="width: 100px; height: 28px;" />
31
+ </a>
32
+ </div>
33
+
34
+ <!-- Start Summary [summary] -->
35
+ ## Summary
36
+
37
+ Moov API: Moov is a platform that enables developers to integrate all aspects of money movement with ease and speed.
38
+ The Moov API makes it simple for platforms to send, receive, and store money. Our API is based upon REST
39
+ principles, returns JSON responses, and uses standard HTTP response codes. To learn more about how Moov
40
+ works at a high level, read our [concepts](https://docs.moov.io/guides/get-started/glossary/) guide.
41
+ <!-- End Summary [summary] -->
42
+
43
+ <!-- Start Table of Contents [toc] -->
44
+ ## Table of Contents
45
+ <!-- $toc-max-depth=2 -->
46
+ * [Moov Python](https://github.com/moovfinancial/moov-python/blob/master/#moov-python)
47
+ * [SDK Installation](https://github.com/moovfinancial/moov-python/blob/master/#sdk-installation)
48
+ * [IDE Support](https://github.com/moovfinancial/moov-python/blob/master/#ide-support)
49
+ * [SDK Example Usage](https://github.com/moovfinancial/moov-python/blob/master/#sdk-example-usage)
50
+ * [Authentication](https://github.com/moovfinancial/moov-python/blob/master/#authentication)
51
+ * [Available Resources and Operations](https://github.com/moovfinancial/moov-python/blob/master/#available-resources-and-operations)
52
+ * [File uploads](https://github.com/moovfinancial/moov-python/blob/master/#file-uploads)
53
+ * [Retries](https://github.com/moovfinancial/moov-python/blob/master/#retries)
54
+ * [Error Handling](https://github.com/moovfinancial/moov-python/blob/master/#error-handling)
55
+ * [Server Selection](https://github.com/moovfinancial/moov-python/blob/master/#server-selection)
56
+ * [Custom HTTP Client](https://github.com/moovfinancial/moov-python/blob/master/#custom-http-client)
57
+ * [Resource Management](https://github.com/moovfinancial/moov-python/blob/master/#resource-management)
58
+ * [Debugging](https://github.com/moovfinancial/moov-python/blob/master/#debugging)
59
+ * [Development](https://github.com/moovfinancial/moov-python/blob/master/#development)
60
+ * [Maturity](https://github.com/moovfinancial/moov-python/blob/master/#maturity)
61
+ * [Contributions](https://github.com/moovfinancial/moov-python/blob/master/#contributions)
62
+
63
+ <!-- End Table of Contents [toc] -->
64
+
65
+ <!-- Start SDK Installation [installation] -->
66
+ ## SDK Installation
67
+
68
+ > [!NOTE]
69
+ > **Python version upgrade policy**
70
+ >
71
+ > Once a Python version reaches its [official end of life date](https://devguide.python.org/versions/), a 3-month grace period is provided for users to upgrade. Following this grace period, the minimum python version supported in the SDK will be updated.
72
+
73
+ The SDK can be installed with either *pip* or *poetry* package managers.
74
+
75
+ ### PIP
76
+
77
+ *PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
78
+
79
+ ```bash
80
+ pip install moovio_sdk
81
+ ```
82
+
83
+ ### Poetry
84
+
85
+ *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.
86
+
87
+ ```bash
88
+ poetry add moovio_sdk
89
+ ```
90
+
91
+ ### Shell and script usage with `uv`
92
+
93
+ You can use this SDK in a Python shell with [uv](https://docs.astral.sh/uv/) and the `uvx` command that comes with it like so:
94
+
95
+ ```shell
96
+ uvx --from moovio_sdk python
97
+ ```
98
+
99
+ It's also possible to write a standalone Python script without needing to set up a whole project like so:
100
+
101
+ ```python
102
+ #!/usr/bin/env -S uv run --script
103
+ # /// script
104
+ # requires-python = ">=3.9"
105
+ # dependencies = [
106
+ # "moovio_sdk",
107
+ # ]
108
+ # ///
109
+
110
+ from moovio_sdk import Moov
111
+
112
+ sdk = Moov(
113
+ # SDK arguments
114
+ )
115
+
116
+ # Rest of script here...
117
+ ```
118
+
119
+ Once that is saved to a file, you can run it with `uv run script.py` where
120
+ `script.py` can be replaced with the actual file name.
121
+ <!-- End SDK Installation [installation] -->
122
+
123
+ <!-- Start IDE Support [idesupport] -->
124
+ ## IDE Support
125
+
126
+ ### PyCharm
127
+
128
+ 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.
129
+
130
+ - [PyCharm Pydantic Plugin](https://docs.pydantic.dev/latest/integrations/pycharm/)
131
+ <!-- End IDE Support [idesupport] -->
132
+
133
+ <!-- Start SDK Example Usage [usage] -->
134
+ ## SDK Example Usage
135
+
136
+ ### Example
137
+
138
+ ```python
139
+ # Synchronous Example
140
+ from moovio_sdk import Moov
141
+ from moovio_sdk.models import components
142
+
143
+
144
+ with Moov(
145
+ security=components.Security(
146
+ username="",
147
+ password="",
148
+ ),
149
+ ) as moov:
150
+
151
+ res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
152
+ individual=components.CreateIndividualProfile(
153
+ name=components.IndividualName(
154
+ first_name="Jordan",
155
+ last_name="Lee",
156
+ middle_name="Reese",
157
+ suffix="Jr",
158
+ ),
159
+ phone=components.PhoneNumber(
160
+ number="8185551212",
161
+ country_code="1",
162
+ ),
163
+ email="jordan.lee@classbooker.dev",
164
+ address=components.Address(
165
+ address_line1="123 Main Street",
166
+ city="Boulder",
167
+ state_or_province="CO",
168
+ postal_code="80301",
169
+ country="US",
170
+ address_line2="Apt 302",
171
+ ),
172
+ birth_date=components.BirthDate(
173
+ day=9,
174
+ month=11,
175
+ year=1989,
176
+ ),
177
+ ),
178
+ business=components.CreateBusinessProfile(
179
+ legal_business_name="Classbooker, LLC",
180
+ business_type=components.BusinessType.LLC,
181
+ address=components.Address(
182
+ address_line1="123 Main Street",
183
+ city="Boulder",
184
+ state_or_province="CO",
185
+ postal_code="80301",
186
+ country="US",
187
+ address_line2="Apt 302",
188
+ ),
189
+ phone=components.PhoneNumber(
190
+ number="8185551212",
191
+ country_code="1",
192
+ ),
193
+ email="jordan.lee@classbooker.dev",
194
+ description="Local fitness gym paying out instructors",
195
+ tax_id=components.TaxID(
196
+ ein=components.TaxIDEin(
197
+ number="12-3456789",
198
+ ),
199
+ ),
200
+ industry_codes=components.IndustryCodes(
201
+ naics="713940",
202
+ sic="7991",
203
+ mcc="7997",
204
+ ),
205
+ ),
206
+ ), metadata={
207
+ "optional": "metadata",
208
+ }, terms_of_service={
209
+ "token": "kgT1uxoMAk7QKuyJcmQE8nqW_HjpyuXBabiXPi6T83fUQoxsyWYPcYzuHQTqrt7YRp4gCwyDQvb6U5REM9Pgl2EloCe35t-eiMAbUWGo3Kerxme6aqNcKrP_6-v0MTXViOEJ96IBxPFTvMV7EROI2dq3u4e-x4BbGSCedAX-ViAQND6hcreCDXwrO6sHuzh5Xi2IzSqZHxaovnWEboaxuZKRJkA3dsFID6fzitMpm2qrOh4",
210
+ }, customer_support={
211
+ "phone": {
212
+ "number": "8185551212",
213
+ "country_code": "1",
214
+ },
215
+ "email": "jordan.lee@classbooker.dev",
216
+ "address": {
217
+ "address_line1": "123 Main Street",
218
+ "city": "Boulder",
219
+ "state_or_province": "CO",
220
+ "postal_code": "80301",
221
+ "country": "US",
222
+ "address_line2": "Apt 302",
223
+ },
224
+ }, settings={
225
+ "card_payment": {
226
+ "statement_descriptor": "Whole Body Fitness",
227
+ },
228
+ "ach_payment": {
229
+ "company_name": "WholeBodyFitness",
230
+ },
231
+ }, mode=components.Mode.PRODUCTION)
232
+
233
+ # Handle response
234
+ print(res)
235
+ ```
236
+
237
+ </br>
238
+
239
+ The same SDK client can also be used to make asychronous requests by importing asyncio.
240
+ ```python
241
+ # Asynchronous Example
242
+ import asyncio
243
+ from moovio_sdk import Moov
244
+ from moovio_sdk.models import components
245
+
246
+ async def main():
247
+
248
+ async with Moov(
249
+ security=components.Security(
250
+ username="",
251
+ password="",
252
+ ),
253
+ ) as moov:
254
+
255
+ res = await moov.accounts.create_async(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
256
+ individual=components.CreateIndividualProfile(
257
+ name=components.IndividualName(
258
+ first_name="Jordan",
259
+ last_name="Lee",
260
+ middle_name="Reese",
261
+ suffix="Jr",
262
+ ),
263
+ phone=components.PhoneNumber(
264
+ number="8185551212",
265
+ country_code="1",
266
+ ),
267
+ email="jordan.lee@classbooker.dev",
268
+ address=components.Address(
269
+ address_line1="123 Main Street",
270
+ city="Boulder",
271
+ state_or_province="CO",
272
+ postal_code="80301",
273
+ country="US",
274
+ address_line2="Apt 302",
275
+ ),
276
+ birth_date=components.BirthDate(
277
+ day=9,
278
+ month=11,
279
+ year=1989,
280
+ ),
281
+ ),
282
+ business=components.CreateBusinessProfile(
283
+ legal_business_name="Classbooker, LLC",
284
+ business_type=components.BusinessType.LLC,
285
+ address=components.Address(
286
+ address_line1="123 Main Street",
287
+ city="Boulder",
288
+ state_or_province="CO",
289
+ postal_code="80301",
290
+ country="US",
291
+ address_line2="Apt 302",
292
+ ),
293
+ phone=components.PhoneNumber(
294
+ number="8185551212",
295
+ country_code="1",
296
+ ),
297
+ email="jordan.lee@classbooker.dev",
298
+ description="Local fitness gym paying out instructors",
299
+ tax_id=components.TaxID(
300
+ ein=components.TaxIDEin(
301
+ number="12-3456789",
302
+ ),
303
+ ),
304
+ industry_codes=components.IndustryCodes(
305
+ naics="713940",
306
+ sic="7991",
307
+ mcc="7997",
308
+ ),
309
+ ),
310
+ ), metadata={
311
+ "optional": "metadata",
312
+ }, terms_of_service={
313
+ "token": "kgT1uxoMAk7QKuyJcmQE8nqW_HjpyuXBabiXPi6T83fUQoxsyWYPcYzuHQTqrt7YRp4gCwyDQvb6U5REM9Pgl2EloCe35t-eiMAbUWGo3Kerxme6aqNcKrP_6-v0MTXViOEJ96IBxPFTvMV7EROI2dq3u4e-x4BbGSCedAX-ViAQND6hcreCDXwrO6sHuzh5Xi2IzSqZHxaovnWEboaxuZKRJkA3dsFID6fzitMpm2qrOh4",
314
+ }, customer_support={
315
+ "phone": {
316
+ "number": "8185551212",
317
+ "country_code": "1",
318
+ },
319
+ "email": "jordan.lee@classbooker.dev",
320
+ "address": {
321
+ "address_line1": "123 Main Street",
322
+ "city": "Boulder",
323
+ "state_or_province": "CO",
324
+ "postal_code": "80301",
325
+ "country": "US",
326
+ "address_line2": "Apt 302",
327
+ },
328
+ }, settings={
329
+ "card_payment": {
330
+ "statement_descriptor": "Whole Body Fitness",
331
+ },
332
+ "ach_payment": {
333
+ "company_name": "WholeBodyFitness",
334
+ },
335
+ }, mode=components.Mode.PRODUCTION)
336
+
337
+ # Handle response
338
+ print(res)
339
+
340
+ asyncio.run(main())
341
+ ```
342
+ <!-- End SDK Example Usage [usage] -->
343
+
344
+ <!-- Start Authentication [security] -->
345
+ ## Authentication
346
+
347
+ ### Per-Client Security Schemes
348
+
349
+ This SDK supports the following security scheme globally:
350
+
351
+ | Name | Type | Scheme | Environment Variable |
352
+ | ------------------------- | ---- | ---------- | ----------------------------------- |
353
+ | `username`<br/>`password` | http | HTTP Basic | `MOOV_USERNAME`<br/>`MOOV_PASSWORD` |
354
+
355
+ You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. For example:
356
+ ```python
357
+ from moovio_sdk import Moov
358
+ from moovio_sdk.models import components
359
+
360
+
361
+ with Moov(
362
+ security=components.Security(
363
+ username="",
364
+ password="",
365
+ ),
366
+ ) as moov:
367
+
368
+ res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
369
+ individual=components.CreateIndividualProfile(
370
+ name=components.IndividualName(
371
+ first_name="Jordan",
372
+ last_name="Lee",
373
+ middle_name="Reese",
374
+ suffix="Jr",
375
+ ),
376
+ phone=components.PhoneNumber(
377
+ number="8185551212",
378
+ country_code="1",
379
+ ),
380
+ email="jordan.lee@classbooker.dev",
381
+ address=components.Address(
382
+ address_line1="123 Main Street",
383
+ city="Boulder",
384
+ state_or_province="CO",
385
+ postal_code="80301",
386
+ country="US",
387
+ address_line2="Apt 302",
388
+ ),
389
+ birth_date=components.BirthDate(
390
+ day=9,
391
+ month=11,
392
+ year=1989,
393
+ ),
394
+ ),
395
+ business=components.CreateBusinessProfile(
396
+ legal_business_name="Classbooker, LLC",
397
+ business_type=components.BusinessType.LLC,
398
+ address=components.Address(
399
+ address_line1="123 Main Street",
400
+ city="Boulder",
401
+ state_or_province="CO",
402
+ postal_code="80301",
403
+ country="US",
404
+ address_line2="Apt 302",
405
+ ),
406
+ phone=components.PhoneNumber(
407
+ number="8185551212",
408
+ country_code="1",
409
+ ),
410
+ email="jordan.lee@classbooker.dev",
411
+ description="Local fitness gym paying out instructors",
412
+ tax_id=components.TaxID(
413
+ ein=components.TaxIDEin(
414
+ number="12-3456789",
415
+ ),
416
+ ),
417
+ industry_codes=components.IndustryCodes(
418
+ naics="713940",
419
+ sic="7991",
420
+ mcc="7997",
421
+ ),
422
+ ),
423
+ ), metadata={
424
+ "optional": "metadata",
425
+ }, terms_of_service={
426
+ "token": "kgT1uxoMAk7QKuyJcmQE8nqW_HjpyuXBabiXPi6T83fUQoxsyWYPcYzuHQTqrt7YRp4gCwyDQvb6U5REM9Pgl2EloCe35t-eiMAbUWGo3Kerxme6aqNcKrP_6-v0MTXViOEJ96IBxPFTvMV7EROI2dq3u4e-x4BbGSCedAX-ViAQND6hcreCDXwrO6sHuzh5Xi2IzSqZHxaovnWEboaxuZKRJkA3dsFID6fzitMpm2qrOh4",
427
+ }, customer_support={
428
+ "phone": {
429
+ "number": "8185551212",
430
+ "country_code": "1",
431
+ },
432
+ "email": "jordan.lee@classbooker.dev",
433
+ "address": {
434
+ "address_line1": "123 Main Street",
435
+ "city": "Boulder",
436
+ "state_or_province": "CO",
437
+ "postal_code": "80301",
438
+ "country": "US",
439
+ "address_line2": "Apt 302",
440
+ },
441
+ }, settings={
442
+ "card_payment": {
443
+ "statement_descriptor": "Whole Body Fitness",
444
+ },
445
+ "ach_payment": {
446
+ "company_name": "WholeBodyFitness",
447
+ },
448
+ }, mode=components.Mode.PRODUCTION)
449
+
450
+ # Handle response
451
+ print(res)
452
+
453
+ ```
454
+ <!-- End Authentication [security] -->
455
+
456
+ <!-- Start Available Resources and Operations [operations] -->
457
+ ## Available Resources and Operations
458
+
459
+ <details open>
460
+ <summary>Available methods</summary>
461
+
462
+ ### [accounts](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accounts/README.md)
463
+
464
+ * [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accounts/README.md#create) - You can create **business** or **individual** accounts for your users (i.e., customers, merchants) by passing the required
465
+ information to Moov. Requirements differ per account type and requested [capabilities](https://docs.moov.io/guides/accounts/capabilities/requirements/).
466
+
467
+ If you're requesting the `wallet`, `send-funds`, `collect-funds`, or `card-issuing` capabilities, you'll need to:
468
+ + Send Moov the user [platform terms of service agreement](https://docs.moov.io/guides/accounts/requirements/platform-agreement/) acceptance.
469
+ This can be done upon account creation, or by [patching](https://docs.moov.io/api/moov-accounts/accounts/patch/) the account using the `termsOfService` field.
470
+ If you're creating a business account with the business type `llc`, `partnership`, or `privateCorporation`, you'll need to:
471
+ + Provide [business representatives](https://docs.moov.io/api/moov-accounts/representatives/) after creating the account.
472
+ + [Patch](https://docs.moov.io/api/moov-accounts/accounts/patch/) the account to indicate that business representative ownership information is complete.
473
+
474
+ Visit our documentation to read more about [creating accounts](https://docs.moov.io/guides/accounts/create-accounts/) and [verification requirements](https://docs.moov.io/guides/accounts/requirements/identity-verification/).
475
+ Note that the `mode` field (for production or sandbox) is only required when creating a _facilitator_ account. All non-facilitator account requests will ignore the mode field and be set to the calling facilitator's mode.
476
+
477
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
478
+ to specify the `/accounts.write` scope.
479
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accounts/README.md#list) - List or search accounts to which the caller is connected.
480
+
481
+ All supported query parameters are optional. If none are provided the response will include all connected accounts.
482
+ Pagination is supported via the `skip` and `count` query parameters. Searching by name and email will overlap and
483
+ return results based on relevance.
484
+
485
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
486
+ to specify the `/accounts.read` scope.
487
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accounts/README.md#get) - Retrieves details for the account with the specified ID.
488
+
489
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
490
+ to specify the `/accounts/{accountID}/profile.read` scope.
491
+ * [update](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accounts/README.md#update) - When **can** profile data be updated:
492
+ + For unverified accounts, all profile data can be edited.
493
+ + During the verification process, missing or incomplete profile data can be edited.
494
+ + Verified accounts can only add missing profile data.
495
+
496
+ When **can't** profile data be updated:
497
+ + Verified accounts cannot change any existing profile data.
498
+
499
+ If you need to update information in a locked state, please contact Moov support.
500
+
501
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
502
+ to specify the `/accounts/{accountID}/profile.write` scope.
503
+ * [disconnect](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accounts/README.md#disconnect) - This will sever the connection between you and the account specified and it will no longer be listed as
504
+ active in the list of accounts. This also means you'll only have read-only access to the account going
505
+ forward for reporting purposes.
506
+
507
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
508
+ you'll need to specify the `/accounts/{accountID}/profile.disconnect` scope.
509
+ * [get_countries](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accounts/README.md#get_countries) - Retrieve the specified countries of operation for an account.
510
+
511
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
512
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
513
+ * [assign_countries](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accounts/README.md#assign_countries) - Assign the countries of operation for an account.
514
+
515
+ This endpoint will always overwrite the previously assigned values.
516
+
517
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
518
+ you'll need to specify the `/accounts/{accountID}/profile.write` scope.
519
+ * [get_merchant_processing_agreement](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accounts/README.md#get_merchant_processing_agreement) - Retrieve a merchant account's processing agreement.
520
+
521
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
522
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
523
+ * [get_terms_of_service_token](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accounts/README.md#get_terms_of_service_token) - Generates a non-expiring token that can then be used to accept Moov's terms of service.
524
+
525
+ This token can only be generated via API. Any Moov account requesting the collect funds, send funds, wallet,
526
+ or card issuing capabilities must accept Moov's terms of service, then have the generated terms of service
527
+ token patched to the account. Read more in our [documentation](https://docs.moov.io/guides/accounts/requirements/platform-agreement/).
528
+
529
+ ### [adjustments](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/adjustments/README.md)
530
+
531
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/adjustments/README.md#list) - List adjustments associated with a Moov account.
532
+
533
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
534
+ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
535
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/adjustments/README.md#get) - Retrieve a specific adjustment associated with a Moov account.
536
+
537
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
538
+ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
539
+
540
+ ### [apple_pay](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/applepay/README.md)
541
+
542
+ * [register_merchant_domains](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/applepay/README.md#register_merchant_domains) - Add domains to be registered with Apple Pay.
543
+
544
+ Any domains that will be used to accept payments must first be [verified](https://docs.moov.io/guides/sources/cards/apple-pay/#register-your-domains)
545
+ with Apple.
546
+
547
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
548
+ you'll need to specify the `/accounts/{accountID}/apple-pay.write` scope.
549
+ * [update_merchant_domains](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/applepay/README.md#update_merchant_domains) - Add or remove domains to be registered with Apple Pay.
550
+
551
+ Any domains that will be used to accept payments must first be [verified](https://docs.moov.io/guides/sources/cards/apple-pay/#register-your-domains)
552
+ with Apple.
553
+
554
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
555
+ you'll need to specify the `/accounts/{accountID}/apple-pay.write` scope.
556
+ * [get_merchant_domains](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/applepay/README.md#get_merchant_domains) - Get domains registered with Apple Pay.
557
+
558
+ Read our [Apple Pay tutorial](https://docs.moov.io/guides/sources/cards/apple-pay/#register-your-domains) to learn more.
559
+
560
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
561
+ you'll need to specify the `/accounts/{accountID}/apple-pay.read` scope.
562
+ * [create_session](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/applepay/README.md#create_session) - Create a session with Apple Pay to facilitate a payment.
563
+
564
+ Read our [Apple Pay tutorial](https://docs.moov.io/guides/sources/cards/apple-pay/#register-your-domains) to learn more.
565
+ A successful response from this endpoint should be passed through to Apple Pay unchanged.
566
+
567
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
568
+ you'll need to specify the `/accounts/{accountID}/apple-pay.write` scope.
569
+ * [link_token](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/applepay/README.md#link_token) - Connect an Apple Pay token to the specified account.
570
+
571
+ Read our [Apple Pay tutorial](https://docs.moov.io/guides/sources/cards/apple-pay/#register-your-domains) to learn more.
572
+ The `token` data is defined by Apple Pay and should be passed through from Apple Pay's response unmodified.
573
+
574
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
575
+ you'll need to specify the `/accounts/{accountID}/cards.write` scope.
576
+
577
+ ### [authentication](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/authentication/README.md)
578
+
579
+ * [revoke_access_token](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/authentication/README.md#revoke_access_token) - Revoke an auth token.
580
+
581
+ Allows clients to notify the authorization server that a previously obtained refresh or access token is no longer needed.
582
+ * [create_access_token](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/authentication/README.md#create_access_token) - Create or refresh an access token.
583
+
584
+ ### [avatars](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/avatars/README.md)
585
+
586
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/avatars/README.md#get) - Get avatar image for an account using a unique ID.
587
+
588
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
589
+ you'll need to specify the `/profile-enrichment.read` scope.
590
+
591
+ ### [bank_accounts](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/bankaccounts/README.md)
592
+
593
+ * [link](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/bankaccounts/README.md#link) - Link a bank account to an existing Moov account. Read our [bank accounts guide](https://docs.moov.io/guides/sources/bank-accounts/) to learn more.
594
+
595
+ It is strongly recommended that callers include the `X-Wait-For` header, set to `payment-method`, if the newly linked
596
+ bank-account is intended to be used right away. If this header is not included, the caller will need to poll the [List Payment
597
+ Methods](https://docs.moov.io/api/sources/payment-methods/list/)
598
+ endpoint to wait for the new payment methods to be available for use.
599
+
600
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
601
+ you'll need to specify the `/accounts/{accountID}/bank-accounts.write` scope.
602
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/bankaccounts/README.md#list) - List all the bank accounts associated with a particular Moov account.
603
+
604
+ Read our [bank accounts guide](https://docs.moov.io/guides/sources/bank-accounts/) to learn more.
605
+
606
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
607
+ you'll need to specify the `/accounts/{accountID}/bank-accounts.read` scope.
608
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/bankaccounts/README.md#get) - Retrieve bank account details (i.e. routing number or account type) associated with a specific Moov account.
609
+
610
+ Read our [bank accounts guide](https://docs.moov.io/guides/sources/bank-accounts/) to learn more.
611
+
612
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
613
+ you'll need to specify the `/accounts/{accountID}/bank-accounts.read` scope.
614
+ * [disable](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/bankaccounts/README.md#disable) - Discontinue using a specified bank account linked to a Moov account.
615
+
616
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
617
+ you'll need to specify the `/accounts/{accountID}/bank-accounts.write` scope.
618
+ * [initiate_micro_deposits](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/bankaccounts/README.md#initiate_micro_deposits) - Micro-deposits help confirm bank account ownership, helping reduce fraud and the risk of unauthorized activity.
619
+ Use this method to initiate the micro-deposit verification, sending two small credit transfers to the bank account
620
+ you want to confirm.
621
+
622
+ If you request micro-deposits before 4:15PM ET, they will appear that same day. If you request micro-deposits any
623
+ time after 4:15PM ET, they will appear the next banking day. When the two credits are initiated, Moov simultaneously
624
+ initiates a debit to recoup the micro-deposits.
625
+
626
+ Micro-deposits initiated for a `sandbox` bank account will always be `$0.00` / `$0.00` and instantly verifiable once initiated.
627
+
628
+ You can simulate micro-deposit verification in test mode. See our [test mode](https://docs.moov.io/guides/get-started/test-mode/#micro-deposits)
629
+ guide for more information.
630
+
631
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
632
+ you'll need to specify the `/accounts/{accountID}/bank-accounts.write` scope.
633
+ * [complete_micro_deposits](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/bankaccounts/README.md#complete_micro_deposits) - Complete the micro-deposit validation process by passing the amounts of the two transfers within three tries.
634
+
635
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
636
+ you'll need to specify the `/accounts/{accountID}/bank-accounts.write` scope.
637
+ * [get_verification](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/bankaccounts/README.md#get_verification) - Retrieve the current status and details of an instant verification, including whether the verification method was instant or same-day
638
+ ACH. This helps track the verification process in real-time and provides details in case of exceptions.
639
+
640
+ The status will indicate the following:
641
+
642
+ - `new`: Verification initiated, credit pending to the payment network
643
+ - `sent-credit`: Credit sent, available for verification
644
+ - `failed`: Verification failed, description provided, user needs to add a new bank account
645
+ - `expired`: Verification expired after 14 days, initiate another verification
646
+ - `max-attempts-exceeded`: Five incorrect code attempts exhausted, initiate another verification
647
+
648
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
649
+ you'll need to specify the `/accounts/{accountID}/bank-accounts.read` scope.
650
+ * [initiate_verification](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/bankaccounts/README.md#initiate_verification) - Instant micro-deposit verification offers a quick and efficient way to verify bank account ownership.
651
+
652
+ Send a $0.01 credit with a unique verification code via RTP or same-day ACH, depending on the receiving bank's capabilities. This
653
+ feature provides a faster alternative to traditional methods, allowing verification in a single session.
654
+
655
+ It is recommended to use the `X-Wait-For: rail-response` header to synchronously receive the outcome of the instant credit in the
656
+ response payload.
657
+
658
+ Possible verification methods:
659
+ - `instant`: Real-time verification credit sent via RTP
660
+ - `ach`: Verification credit sent via same-day ACH
661
+
662
+ Possible statuses:
663
+ - `new`: Verification initiated, credit pending
664
+ - `sent-credit`: Credit sent, available for verification in the external bank account
665
+ - `failed`: Verification failed due to credit rejection/return, details in `exceptionDetails`
666
+
667
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
668
+ you'll need to specify the `/accounts/{accountID}/bank-accounts.write` scope.
669
+ * [complete_verification](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/bankaccounts/README.md#complete_verification) - Finalize the instant micro-deposit verification by submitting the verification code displayed in the user's bank account.
670
+
671
+ Upon successful verification, the bank account status will be updated to `verified` and eligible for ACH debit transactions.
672
+
673
+ The following formats are accepted:
674
+ - `MV0000`
675
+ - `mv0000`
676
+ - `0000`
677
+
678
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
679
+ you'll need to specify the `/accounts/{accountID}/bank-accounts.write` scope.
680
+
681
+ ### [branding](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/branding/README.md)
682
+
683
+ * [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/branding/README.md#create) - Create brand properties for the specified account.
684
+
685
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
686
+ you'll need to specify the `/accounts/{accountID}/branding.write` scope.
687
+ * [upsert](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/branding/README.md#upsert) - Create or replace brand properties for the specified account.
688
+
689
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
690
+ you'll need to specify the `/accounts/{accountID}/branding.write` scope.
691
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/branding/README.md#get) - Get brand properties for the specified account.
692
+
693
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
694
+ you'll need to specify the `/accounts/{accountID}/branding.read` scope.
695
+ * [update](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/branding/README.md#update) - Updates the brand properties for the specified account.
696
+
697
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
698
+ you'll need to specify the `/accounts/{accountID}/branding.write` scope.
699
+
700
+ ### [capabilities](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/capabilities/README.md)
701
+
702
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/capabilities/README.md#list) - Retrieve all the capabilities an account has requested.
703
+
704
+ Read our [capabilities guide](https://docs.moov.io/guides/accounts/capabilities/) to learn more.
705
+
706
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
707
+ you'll need to specify the `/accounts/{accountID}/capabilities.read` scope.
708
+ * [request](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/capabilities/README.md#request) - Request capabilities for a specific account. Read our [capabilities guide](https://docs.moov.io/guides/accounts/capabilities/) to learn more.
709
+
710
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
711
+ you'll need to specify the `/accounts/{accountID}/capabilities.write` scope.
712
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/capabilities/README.md#get) - Retrieve a specific capability that an account has requested. Read our [capabilities guide](https://docs.moov.io/guides/accounts/capabilities/) to learn more.
713
+
714
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
715
+ you'll need to specify the `/accounts/{accountID}/capabilities.read` scope.
716
+ * [disable](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/capabilities/README.md#disable) - Disable a specific capability that an account has requested. Read our [capabilities guide](https://docs.moov.io/guides/accounts/capabilities/) to learn more.
717
+
718
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
719
+ you'll need to specify the `/accounts/{accountID}/capabilities.write` scope.
720
+
721
+ ### [card_issuing](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/cardissuing/README.md)
722
+
723
+ * [request](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/cardissuing/README.md#request) - Request a virtual card be issued.
724
+
725
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
726
+ you'll need to specify the `/accounts/{accountID}/issued-cards.write` scope.
727
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/cardissuing/README.md#list) - List Moov issued cards existing for the account.
728
+
729
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
730
+ you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope.
731
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/cardissuing/README.md#get) - Retrieve a single issued card associated with a Moov account.
732
+
733
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
734
+ you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope.
735
+ * [update](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/cardissuing/README.md#update) - Update a Moov issued card.
736
+
737
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
738
+ you'll need to specify the `/accounts/{accountID}/issued-cards.write` scope.
739
+ * [get_full](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/cardissuing/README.md#get_full) - Get issued card with PAN, CVV, and expiration.
740
+
741
+ Only use this endpoint if you have provided Moov with a copy of your PCI attestation of compliance.
742
+
743
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
744
+ you'll need to specify the `/accounts/{accountID}/issued-cards.read-secure` scope.
745
+
746
+ ### [cards](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/cards/README.md)
747
+
748
+ * [link](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/cards/README.md#link) - Link a card to an existing Moov account.
749
+
750
+ Read our [accept card payments guide](https://docs.moov.io/guides/sources/cards/accept-card-payments/#link-a-card) to learn more.
751
+
752
+ Only use this endpoint if you have provided Moov with a copy of your PCI attestation of compliance.
753
+
754
+ During card linking, the provided data will be verified by submitting a $0 authorization (account verification) request.
755
+ If `merchantAccountID` is provided, the authorization request will contain that account's statement descriptor and address.
756
+ Otherwise, the platform account's profile will be used. If no statement descriptor has been set, the authorization will
757
+ use the account's name instead.
758
+
759
+ It is strongly recommended that callers include the `X-Wait-For` header, set to `payment-method`, if the newly linked
760
+ card is intended to be used right away. If this header is not included, the caller will need to poll the [List Payment
761
+ Methods](https://docs.moov.io/api/sources/payment-methods/list/)
762
+ endpoint to wait for the new payment methods to be available for use.
763
+
764
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
765
+ you'll need to specify the `/accounts/{accountID}/cards.write` scope.
766
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/cards/README.md#list) - List all the active cards associated with a Moov account.
767
+
768
+ Read our [accept card payments guide](https://docs.moov.io/guides/sources/cards/accept-card-payments/) to learn more.
769
+
770
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
771
+ you'll need to specify the `/accounts/{accountID}/cards.read` scope.
772
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/cards/README.md#get) - Fetch a specific card associated with a Moov account.
773
+
774
+ Read our [accept card payments guide](https://docs.moov.io/guides/sources/cards/accept-card-payments/) to learn more.
775
+
776
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
777
+ you'll need to specify the `/accounts/{accountID}/cards.read` scope.
778
+ * [update](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/cards/README.md#update) - Update a linked card and/or resubmit it for verification.
779
+
780
+ If a value is provided for CVV, a new verification ($0 authorization) will be submitted for the card. Updating the expiration
781
+ date or
782
+ address will update the information stored on file for the card but will not be verified.
783
+
784
+ Read our [accept card payments guide](https://docs.moov.io/guides/sources/cards/accept-card-payments/#reverify-a-card) to learn
785
+ more.
786
+
787
+ Only use this endpoint if you have provided Moov with a copy of your PCI attestation of compliance.
788
+
789
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
790
+ you'll need to specify the `/accounts/{accountID}/cards.write` scope.
791
+ * [disable](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/cards/README.md#disable) - Disables a card associated with a Moov account.
792
+
793
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
794
+ you'll need to specify the `/accounts/{accountID}/cards.write` scope.
795
+
796
+ ### [disputes](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/disputes/README.md)
797
+
798
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/disputes/README.md#list) - Returns the list of disputes.
799
+
800
+ Read our [disputes guide](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/disputes/) to learn more.
801
+
802
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
803
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
804
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/disputes/README.md#get) - Get a dispute by ID.
805
+
806
+ Read our [disputes guide](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/disputes/) to learn more.
807
+
808
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
809
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
810
+ * [accept](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/disputes/README.md#accept) - Accepts liability for a dispute.
811
+
812
+ Read our [disputes guide](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/disputes/) to learn more.
813
+
814
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
815
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
816
+ * [list_evidence](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/disputes/README.md#list_evidence) - Returns a dispute's public evidence by its ID.
817
+
818
+ Read our [disputes guide](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/disputes/) to learn more.
819
+
820
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
821
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
822
+ * [upload_evidence_file](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/disputes/README.md#upload_evidence_file) - Uploads a file as evidence for a dispute.
823
+
824
+ Read our [disputes guide](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/disputes/) to learn more.
825
+
826
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
827
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
828
+ * [upload_evidence_text](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/disputes/README.md#upload_evidence_text) - Uploads text as evidence for a dispute.
829
+
830
+ Read our [disputes guide](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/disputes/) to learn more.
831
+
832
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
833
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
834
+ * [submit_evidence](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/disputes/README.md#submit_evidence) - Submit the evidence associated with a dispute.
835
+
836
+ Evidence items must be uploaded using the appropriate endpoint(s) prior to calling this endpoint to submit it. **Evidence can only
837
+ be submitted once per dispute.**
838
+
839
+ Read our [disputes guide](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/disputes/) to learn more.
840
+
841
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
842
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
843
+ * [get_evidence](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/disputes/README.md#get_evidence) - Get dispute evidence by ID.
844
+
845
+ Read our [disputes guide](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/disputes/) to learn more.
846
+
847
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
848
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
849
+ * [update_evidence](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/disputes/README.md#update_evidence) - Updates dispute evidence by ID.
850
+
851
+ Read our [disputes guide](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/disputes/) to learn more.
852
+
853
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
854
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
855
+ * [delete_evidence](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/disputes/README.md#delete_evidence) - Deletes dispute evidence by ID.
856
+
857
+ Read our [disputes guide](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/disputes/) to learn more.
858
+
859
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
860
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
861
+ * [get_evidence_data](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/disputes/README.md#get_evidence_data) - Downloads dispute evidence data by ID.
862
+
863
+ Read our [disputes guide](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/disputes/) to learn more.
864
+
865
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
866
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
867
+
868
+ ### [end_to_end_encryption](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/endtoendencryption/README.md)
869
+
870
+ * [test_encrypted_token](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/endtoendencryption/README.md#test_encrypted_token) - Allows for testing a JWE token to ensure it's acceptable by Moov.
871
+
872
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
873
+ you'll need to specify the `/ping.read` scope.
874
+ * [generate_key](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/endtoendencryption/README.md#generate_key) - Generates a public key used to create a JWE token for passing secure authentication data through non-PCI compliant intermediaries.
875
+
876
+ ### [enriched_address](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/enrichedaddress/README.md)
877
+
878
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/enrichedaddress/README.md#get) - Fetch enriched address suggestions. Requires a partial address.
879
+
880
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
881
+ you'll need to specify the `/profile-enrichment.read` scope.
882
+
883
+ ### [enriched_profile](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/enrichedprofile/README.md)
884
+
885
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/enrichedprofile/README.md#get) - Fetch enriched profile data. Requires a valid email address. This service is offered in collaboration with Clearbit.
886
+
887
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
888
+ you'll need to specify the `/profile-enrichment.read` scope.
889
+
890
+ ### [fee_plans](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/feeplans/README.md)
891
+
892
+ * [list_fee_plan_agreements](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/feeplans/README.md#list_fee_plan_agreements) - List all fee plan agreements associated with an account.
893
+
894
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
895
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
896
+ * [create_fee_plan_agreements](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/feeplans/README.md#create_fee_plan_agreements) - Creates the subscription of a fee plan to a merchant account. Merchants are required to accept the fee plan terms prior to activation.
897
+
898
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
899
+ you'll need to specify the `/accounts/{accountID}/profile.write` scope.
900
+ * [list_fee_plans](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/feeplans/README.md#list_fee_plans) - List all fee plans available for use by an account. This is intended to be used by an account when
901
+ selecting a fee plan to apply to a connected account.
902
+
903
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
904
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
905
+ * [retrieve_fees](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/feeplans/README.md#retrieve_fees) - Retrieve fees associated with an account.
906
+
907
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
908
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
909
+ * [list_fees_fetch](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/feeplans/README.md#list_fees_fetch) - List fees associated with an account.
910
+
911
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
912
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
913
+ * [list_partner_pricing](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/feeplans/README.md#list_partner_pricing) - List all partner pricing plans available for use by an account.
914
+
915
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
916
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
917
+ * [list_partner_pricing_agreements](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/feeplans/README.md#list_partner_pricing_agreements) - List all partner pricing agreements associated with an account.
918
+
919
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
920
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
921
+
922
+ ### [files](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/files/README.md)
923
+
924
+ * [upload](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/files/README.md#upload) - Upload a file and link it to the specified Moov account.
925
+
926
+ The maximum file size is 10MB. Each account is allowed a maximum of 50 files. Acceptable file types include csv, jpg, pdf,
927
+ and png.
928
+
929
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
930
+ you'll need to specify the `/accounts/{accountID}/files.write` scope.
931
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/files/README.md#list) - List all the files associated with a particular Moov account.
932
+
933
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
934
+ you'll need to specify the `/accounts/{accountID}/files.read` scope.
935
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/files/README.md#get) - Retrieve file details associated with a specific Moov account.
936
+
937
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
938
+ you'll need to specify the `/accounts/{accountID}/files.read` scope.
939
+
940
+ ### [industries](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/industries/README.md)
941
+
942
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/industries/README.md#list) - Returns a list of all industry titles and their corresponding MCC/SIC/NAICS codes. Results are ordered by title.
943
+
944
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
945
+ you'll need to specify the `/profile-enrichment.read` scope.
946
+
947
+ ### [institutions](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/institutions/README.md)
948
+
949
+ * [search](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/institutions/README.md#search) - Search for institutions by either their name or routing number.
950
+
951
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
952
+ you'll need to specify the `/fed.read` scope.
953
+
954
+ ### [issuing_transactions](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/issuingtransactions/README.md)
955
+
956
+ * [list_authorizations](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/issuingtransactions/README.md#list_authorizations) - List issued card authorizations associated with a Moov account.
957
+
958
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
959
+ you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope.
960
+ * [get_authorization](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/issuingtransactions/README.md#get_authorization) - Retrieves details of an authorization associated with a specific Moov account.
961
+
962
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
963
+ you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope.
964
+ * [list_authorization_events](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/issuingtransactions/README.md#list_authorization_events) - List card network and Moov platform events that affect the authorization and its hold on a wallet balance.
965
+
966
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
967
+ you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope.
968
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/issuingtransactions/README.md#list) - List issued card transactions associated with a Moov account.
969
+
970
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
971
+ you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope.
972
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/issuingtransactions/README.md#get) - Retrieves details of an issued card transaction associated with a specific Moov account.
973
+
974
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
975
+ you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope.
976
+
977
+
978
+ ### [onboarding](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/onboarding/README.md)
979
+
980
+ * [create_invite](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/onboarding/README.md#create_invite) - Create an invitation containing a unique link that allows the recipient to onboard their organization with Moov.
981
+
982
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
983
+ you'll need to specify the `/accounts.write` scope.
984
+ * [list_invites](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/onboarding/README.md#list_invites) - List all the onboarding invites created by the caller's account.
985
+
986
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
987
+ you'll need to specify the `/accounts.read` scope.
988
+ * [get_invite](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/onboarding/README.md#get_invite) - Retrieve details about an onboarding invite.
989
+
990
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
991
+ you'll need to specify the `/accounts.read` scope.
992
+ * [revoke_invite](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/onboarding/README.md#revoke_invite) - Revoke an onboarding invite, rendering the invitation link unusable.
993
+
994
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
995
+ you'll need to specify the `/accounts.write` scope.
996
+
997
+ ### [payment_links](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/paymentlinks/README.md)
998
+
999
+ * [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/paymentlinks/README.md#create) - Create a payment link that allows an end user to make a payment on Moov's hosted payment link page.
1000
+
1001
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1002
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
1003
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/paymentlinks/README.md#list) - List all the payment links created under a Moov account.
1004
+
1005
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1006
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
1007
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/paymentlinks/README.md#get) - Retrieve a payment link by code.
1008
+
1009
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1010
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
1011
+ * [update](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/paymentlinks/README.md#update) - Update a payment link.
1012
+
1013
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1014
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
1015
+ * [disable](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/paymentlinks/README.md#disable) - Disable a payment link.
1016
+
1017
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1018
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
1019
+ * [get_qr_code](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/paymentlinks/README.md#get_qr_code) - Retrieve the payment link encoded in a QR code.
1020
+
1021
+ Use the `Accept` header to specify the format of the response. Supported formats are `application/json` and `image/png`.
1022
+
1023
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1024
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
1025
+
1026
+ ### [payment_methods](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/paymentmethods/README.md)
1027
+
1028
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/paymentmethods/README.md#list) - Retrieve a list of payment methods associated with a Moov account. Read our [payment methods
1029
+ guide](https://docs.moov.io/guides/money-movement/payment-methods/) to learn more.
1030
+
1031
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1032
+ you'll need to specify the `/accounts/{accountID}/payment-methods.read` scope.
1033
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/paymentmethods/README.md#get) - Get the specified payment method associated with a Moov account. Read our [payment methods guide](https://docs.moov.io/guides/money-movement/payment-methods/) to learn more.
1034
+
1035
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1036
+ you'll need to specify the `/accounts/{accountID}/payment-methods.read` scope.
1037
+
1038
+ ### [ping](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/ping/README.md)
1039
+
1040
+ * [ping](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/ping/README.md#ping) - A simple endpoint to check auth.
1041
+
1042
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1043
+ you'll need to specify the `/ping.read` scope.
1044
+
1045
+ ### [receipts](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/receipts/README.md)
1046
+
1047
+ * [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/receipts/README.md#create) - Create receipts for transfers and scheduled transfers.
1048
+
1049
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1050
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
1051
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/receipts/README.md#list) - List receipts by trasnferID, scheduleID, or occurrenceID.
1052
+
1053
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1054
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
1055
+
1056
+ ### [representatives](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/representatives/README.md)
1057
+
1058
+ * [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/representatives/README.md#create) - Moov accounts associated with businesses require information regarding individuals who represent the business.
1059
+ You can provide this information by creating a representative. Each account is allowed a maximum of 7 representatives.
1060
+ Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more.
1061
+
1062
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1063
+ you'll need to specify the `/accounts/{accountID}/representatives.write` scope.
1064
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/representatives/README.md#list) - A Moov account may have multiple representatives depending on the associated business's ownership and management structure.
1065
+ You can use this method to list all the representatives for a given Moov account.
1066
+ Note that Moov accounts associated with an individual do not have representatives.
1067
+ Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more.
1068
+
1069
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1070
+ you'll need to specify the `/accounts/{accountID}/representatives.read` scope.
1071
+ * [delete](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/representatives/README.md#delete) - Deletes a business representative associated with a Moov account. Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more.
1072
+
1073
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1074
+ you'll need to specify the `/accounts/{accountID}/representatives.write` scope.
1075
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/representatives/README.md#get) - Retrieve a specific representative associated with a given Moov account. Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more.
1076
+
1077
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1078
+ you'll need to specify the `/accounts/{accountID}/representatives.read` scope.
1079
+ * [update](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/representatives/README.md#update) - If a representative's information has changed you can patch the information associated with a specific representative ID.
1080
+ Read our [business representatives guide](https://docs.moov.io/guides/accounts/requirements/business-representatives/) to learn more.
1081
+
1082
+ When **can** profile data be updated:
1083
+
1084
+ - For unverified representatives, all profile data can be edited.
1085
+ - During the verification process, missing or incomplete profile data can be edited.
1086
+ - Verified representatives can only add missing profile data.
1087
+
1088
+ When **can't** profile data be updated:
1089
+
1090
+ - Verified representatives cannot change any existing profile data.
1091
+
1092
+ If you need to update information in a locked state, please contact Moov support.
1093
+
1094
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1095
+ you'll need to specify the `/accounts/{accountID}/representatives.write` scope.
1096
+
1097
+ ### [scheduling](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/scheduling/README.md)
1098
+
1099
+ * [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/scheduling/README.md#create) - Describes the schedule to create or modify.
1100
+
1101
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1102
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
1103
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/scheduling/README.md#list) - Describes a list of schedules associated with an account. Requires at least 1 occurrence or recurTransfer to be specified.
1104
+
1105
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1106
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
1107
+ * [update](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/scheduling/README.md#update) - Describes the schedule to modify.
1108
+
1109
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1110
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
1111
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/scheduling/README.md#get) - Describes a schedule associated with an account. Requires at least 1 occurrence or recurTransfer to be specified.
1112
+
1113
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1114
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
1115
+ * [cancel](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/scheduling/README.md#cancel) - Describes the schedule to cancel.
1116
+
1117
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1118
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
1119
+ * [get_occurrance](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/scheduling/README.md#get_occurrance) - Gets a specific occurrence.
1120
+
1121
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1122
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
1123
+
1124
+ ### [sweeps](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/sweeps/README.md)
1125
+
1126
+ * [create_config](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/sweeps/README.md#create_config) - Create a sweep config for a wallet.
1127
+
1128
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1129
+ you'll need to specify the `/accounts/{accountID}/wallets.write` scope.
1130
+ * [list_configs](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/sweeps/README.md#list_configs) - List sweep configs associated with an account.
1131
+
1132
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1133
+ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
1134
+ * [get_config](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/sweeps/README.md#get_config) - Get a sweep config associated with a wallet.
1135
+
1136
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1137
+ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
1138
+ * [update_config](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/sweeps/README.md#update_config) - Update settings on a sweep config.
1139
+
1140
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1141
+ you'll need to specify the `/accounts/{accountID}/wallets.write` scope.
1142
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/sweeps/README.md#list) - List sweeps associated with a wallet.
1143
+
1144
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1145
+ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
1146
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/sweeps/README.md#get) - Get details on a specific sweep.
1147
+
1148
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1149
+ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
1150
+
1151
+ ### [terminal_applications](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/terminalapplications/README.md)
1152
+
1153
+ * [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/terminalapplications/README.md#create) - Create a new terminal application.
1154
+
1155
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1156
+ you'll need to specify the `/terminalApplications.write` scope.
1157
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/terminalapplications/README.md#list) - List all the terminal applications for a Moov Account.
1158
+
1159
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1160
+ you'll need to specify the `/terminalApplications.read` scope.
1161
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/terminalapplications/README.md#get) - Fetch a specific terminal application.
1162
+
1163
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1164
+ you'll need to specify the `/terminalApplications.read` scope.
1165
+ * [delete](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/terminalapplications/README.md#delete) - Delete a specific terminal application.
1166
+
1167
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1168
+ you'll need to specify the `/terminalApplications.write` scope.
1169
+
1170
+ ### [transfers](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md)
1171
+
1172
+ * [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#create) - Move money by providing the source, destination, and amount in the request body.
1173
+
1174
+ Read our [transfers overview guide](https://docs.moov.io/guides/money-movement/overview/) to learn more.
1175
+
1176
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1177
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
1178
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#list) - List all the transfers associated with a particular Moov account.
1179
+
1180
+ Read our [transfers overview guide](https://docs.moov.io/guides/money-movement/overview/) to learn more.
1181
+
1182
+ When you run this request, you retrieve 200 transfers at a time. You can advance past a results set of 200 transfers by using the `skip` parameter (for example,
1183
+ if you set `skip`= 10, you will see a results set of 200 transfers after the first 10). If you are searching a high volume of transfers, the request will likely
1184
+ process very slowly. To achieve faster performance, restrict the data as much as you can by using the `StartDateTime` and `EndDateTime` parameters for a limited
1185
+ period of time. You can run multiple requests in smaller time window increments until you've retrieved all the transfers you need.
1186
+
1187
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1188
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
1189
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#get) - Retrieve full transfer details for an individual transfer of a particular Moov account.
1190
+
1191
+ Payment rail-specific details are included in the source and destination. Read our [transfers overview guide](https://docs.moov.io/guides/money-movement/overview/)
1192
+ to learn more.
1193
+
1194
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1195
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
1196
+ * [update](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#update) - Update the metadata contained on a transfer.
1197
+
1198
+ Read our [transfers overview guide](https://docs.moov.io/guides/money-movement/overview/) to learn more.
1199
+
1200
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1201
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
1202
+ * [create_cancellation](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#create_cancellation) - Initiate a cancellation for a card, ACH, or queued transfer.
1203
+
1204
+ To access this endpoint using a [token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
1205
+ to specify the `/accounts/{accountID}/transfers.write` scope.
1206
+ * [get_cancellation](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#get_cancellation) - Get details of a cancellation for a transfer.
1207
+
1208
+ To access this endpoint using a [token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
1209
+ to specify the `/accounts/{accountID}/transfers.read` scope.
1210
+ * [initiate_refund](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#initiate_refund) - Initiate a refund for a card transfer.
1211
+
1212
+ **Use the [Cancel or refund a card transfer](https://docs.moov.io/api/money-movement/refunds/cancel/) endpoint for more comprehensive cancel and refund options.**
1213
+ See the [reversals](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/reversals/) guide for more information.
1214
+
1215
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1216
+ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
1217
+ * [list_refunds](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#list_refunds) - Get a list of refunds for a card transfer.
1218
+
1219
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1220
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
1221
+ * [get_refund](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#get_refund) - Get details of a refund for a card transfer.
1222
+
1223
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1224
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
1225
+ * [create_reversal](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#create_reversal) - Reverses a card transfer by initiating a cancellation or refund depending on the transaction status.
1226
+ Read our [reversals guide](https://docs.moov.io/guides/money-movement/accept-payments/card-acceptance/reversals/)
1227
+ to learn more.
1228
+
1229
+ To access this endpoint using a [token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
1230
+ to specify the `/accounts/{accountID}/transfers.write` scope.
1231
+ * [generate_options](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md#generate_options) - Generate available payment method options for one or multiple transfer participants depending on the accountID or paymentMethodID you
1232
+ supply in the request.
1233
+
1234
+ Read our [transfers overview guide](https://docs.moov.io/guides/money-movement/overview/) to learn more.
1235
+
1236
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1237
+ you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
1238
+
1239
+ ### [underwriting](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/underwriting/README.md)
1240
+
1241
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/underwriting/README.md#get) - Retrieve underwriting associated with a given Moov account.
1242
+
1243
+ Read our [underwriting guide](https://docs.moov.io/guides/accounts/requirements/underwriting/) to learn more.
1244
+
1245
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1246
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
1247
+ * [upsert](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/underwriting/README.md#upsert) - Create or update the account's underwriting.
1248
+
1249
+ Read our [underwriting guide](https://docs.moov.io/guides/accounts/requirements/underwriting/) to learn more.
1250
+
1251
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1252
+ you'll need to specify the `/accounts/{accountID}/profile.write` scope.
1253
+
1254
+ ### [wallet_transactions](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/wallettransactions/README.md)
1255
+
1256
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/wallettransactions/README.md#list) - List all the transactions associated with a particular Moov wallet.
1257
+
1258
+ Read our [wallet transactions guide](https://docs.moov.io/guides/sources/wallets/transactions/) to learn more.
1259
+
1260
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1261
+ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
1262
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/wallettransactions/README.md#get) - Get details on a specific wallet transaction.
1263
+
1264
+ Read our [wallet transactions guide](https://docs.moov.io/guides/sources/wallets/transactions/) to learn more.
1265
+
1266
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1267
+ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
1268
+
1269
+ ### [wallets](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/wallets/README.md)
1270
+
1271
+ * [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/wallets/README.md#list) - List the wallets associated with a Moov account.
1272
+
1273
+ Read our [Moov wallets guide](https://docs.moov.io/guides/sources/wallets/) to learn more.
1274
+
1275
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1276
+ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
1277
+ * [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/wallets/README.md#get) - Get information on a specific wallet (e.g., the available balance).
1278
+
1279
+ Read our [Moov wallets guide](https://docs.moov.io/guides/sources/wallets/) to learn more.
1280
+
1281
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1282
+ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
1283
+
1284
+ </details>
1285
+ <!-- End Available Resources and Operations [operations] -->
1286
+
1287
+ <!-- Start File uploads [file-upload] -->
1288
+ ## File uploads
1289
+
1290
+ 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.
1291
+
1292
+ > [!TIP]
1293
+ >
1294
+ > For endpoints that handle file uploads bytes arrays can also be used. However, using streams is recommended for large files.
1295
+ >
1296
+
1297
+ ```python
1298
+ from moovio_sdk import Moov
1299
+ from moovio_sdk.models import components
1300
+
1301
+
1302
+ with Moov(
1303
+ security=components.Security(
1304
+ username="",
1305
+ password="",
1306
+ ),
1307
+ ) as moov:
1308
+
1309
+ res = moov.disputes.upload_evidence_file(account_id="ac81921c-4c1a-4e7a-8a8f-dfc0d0027ac5", dispute_id="49c04fa3-f5c3-4ddd-aece-4b5fb6e8a071", file={
1310
+ "file_name": "example.file",
1311
+ "content": open("example.file", "rb"),
1312
+ }, evidence_type=components.EvidenceType.CUSTOMER_COMMUNICATION)
1313
+
1314
+ # Handle response
1315
+ print(res)
1316
+
1317
+ ```
1318
+ <!-- End File uploads [file-upload] -->
1319
+
1320
+ <!-- Start Retries [retries] -->
1321
+ ## Retries
1322
+
1323
+ 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.
1324
+
1325
+ To change the default retry strategy for a single API call, simply provide a `RetryConfig` object to the call:
1326
+ ```python
1327
+ from moovio_sdk import Moov
1328
+ from moovio_sdk.models import components
1329
+ from moovio_sdk.utils import BackoffStrategy, RetryConfig
1330
+
1331
+
1332
+ with Moov(
1333
+ security=components.Security(
1334
+ username="",
1335
+ password="",
1336
+ ),
1337
+ ) as moov:
1338
+
1339
+ res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
1340
+ individual=components.CreateIndividualProfile(
1341
+ name=components.IndividualName(
1342
+ first_name="Jordan",
1343
+ last_name="Lee",
1344
+ middle_name="Reese",
1345
+ suffix="Jr",
1346
+ ),
1347
+ phone=components.PhoneNumber(
1348
+ number="8185551212",
1349
+ country_code="1",
1350
+ ),
1351
+ email="jordan.lee@classbooker.dev",
1352
+ address=components.Address(
1353
+ address_line1="123 Main Street",
1354
+ city="Boulder",
1355
+ state_or_province="CO",
1356
+ postal_code="80301",
1357
+ country="US",
1358
+ address_line2="Apt 302",
1359
+ ),
1360
+ birth_date=components.BirthDate(
1361
+ day=9,
1362
+ month=11,
1363
+ year=1989,
1364
+ ),
1365
+ ),
1366
+ business=components.CreateBusinessProfile(
1367
+ legal_business_name="Classbooker, LLC",
1368
+ business_type=components.BusinessType.LLC,
1369
+ address=components.Address(
1370
+ address_line1="123 Main Street",
1371
+ city="Boulder",
1372
+ state_or_province="CO",
1373
+ postal_code="80301",
1374
+ country="US",
1375
+ address_line2="Apt 302",
1376
+ ),
1377
+ phone=components.PhoneNumber(
1378
+ number="8185551212",
1379
+ country_code="1",
1380
+ ),
1381
+ email="jordan.lee@classbooker.dev",
1382
+ description="Local fitness gym paying out instructors",
1383
+ tax_id=components.TaxID(
1384
+ ein=components.TaxIDEin(
1385
+ number="12-3456789",
1386
+ ),
1387
+ ),
1388
+ industry_codes=components.IndustryCodes(
1389
+ naics="713940",
1390
+ sic="7991",
1391
+ mcc="7997",
1392
+ ),
1393
+ ),
1394
+ ), metadata={
1395
+ "optional": "metadata",
1396
+ }, terms_of_service={
1397
+ "token": "kgT1uxoMAk7QKuyJcmQE8nqW_HjpyuXBabiXPi6T83fUQoxsyWYPcYzuHQTqrt7YRp4gCwyDQvb6U5REM9Pgl2EloCe35t-eiMAbUWGo3Kerxme6aqNcKrP_6-v0MTXViOEJ96IBxPFTvMV7EROI2dq3u4e-x4BbGSCedAX-ViAQND6hcreCDXwrO6sHuzh5Xi2IzSqZHxaovnWEboaxuZKRJkA3dsFID6fzitMpm2qrOh4",
1398
+ }, customer_support={
1399
+ "phone": {
1400
+ "number": "8185551212",
1401
+ "country_code": "1",
1402
+ },
1403
+ "email": "jordan.lee@classbooker.dev",
1404
+ "address": {
1405
+ "address_line1": "123 Main Street",
1406
+ "city": "Boulder",
1407
+ "state_or_province": "CO",
1408
+ "postal_code": "80301",
1409
+ "country": "US",
1410
+ "address_line2": "Apt 302",
1411
+ },
1412
+ }, settings={
1413
+ "card_payment": {
1414
+ "statement_descriptor": "Whole Body Fitness",
1415
+ },
1416
+ "ach_payment": {
1417
+ "company_name": "WholeBodyFitness",
1418
+ },
1419
+ }, mode=components.Mode.PRODUCTION,
1420
+ RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
1421
+
1422
+ # Handle response
1423
+ print(res)
1424
+
1425
+ ```
1426
+
1427
+ 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:
1428
+ ```python
1429
+ from moovio_sdk import Moov
1430
+ from moovio_sdk.models import components
1431
+ from moovio_sdk.utils import BackoffStrategy, RetryConfig
1432
+
1433
+
1434
+ with Moov(
1435
+ retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
1436
+ security=components.Security(
1437
+ username="",
1438
+ password="",
1439
+ ),
1440
+ ) as moov:
1441
+
1442
+ res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
1443
+ individual=components.CreateIndividualProfile(
1444
+ name=components.IndividualName(
1445
+ first_name="Jordan",
1446
+ last_name="Lee",
1447
+ middle_name="Reese",
1448
+ suffix="Jr",
1449
+ ),
1450
+ phone=components.PhoneNumber(
1451
+ number="8185551212",
1452
+ country_code="1",
1453
+ ),
1454
+ email="jordan.lee@classbooker.dev",
1455
+ address=components.Address(
1456
+ address_line1="123 Main Street",
1457
+ city="Boulder",
1458
+ state_or_province="CO",
1459
+ postal_code="80301",
1460
+ country="US",
1461
+ address_line2="Apt 302",
1462
+ ),
1463
+ birth_date=components.BirthDate(
1464
+ day=9,
1465
+ month=11,
1466
+ year=1989,
1467
+ ),
1468
+ ),
1469
+ business=components.CreateBusinessProfile(
1470
+ legal_business_name="Classbooker, LLC",
1471
+ business_type=components.BusinessType.LLC,
1472
+ address=components.Address(
1473
+ address_line1="123 Main Street",
1474
+ city="Boulder",
1475
+ state_or_province="CO",
1476
+ postal_code="80301",
1477
+ country="US",
1478
+ address_line2="Apt 302",
1479
+ ),
1480
+ phone=components.PhoneNumber(
1481
+ number="8185551212",
1482
+ country_code="1",
1483
+ ),
1484
+ email="jordan.lee@classbooker.dev",
1485
+ description="Local fitness gym paying out instructors",
1486
+ tax_id=components.TaxID(
1487
+ ein=components.TaxIDEin(
1488
+ number="12-3456789",
1489
+ ),
1490
+ ),
1491
+ industry_codes=components.IndustryCodes(
1492
+ naics="713940",
1493
+ sic="7991",
1494
+ mcc="7997",
1495
+ ),
1496
+ ),
1497
+ ), metadata={
1498
+ "optional": "metadata",
1499
+ }, terms_of_service={
1500
+ "token": "kgT1uxoMAk7QKuyJcmQE8nqW_HjpyuXBabiXPi6T83fUQoxsyWYPcYzuHQTqrt7YRp4gCwyDQvb6U5REM9Pgl2EloCe35t-eiMAbUWGo3Kerxme6aqNcKrP_6-v0MTXViOEJ96IBxPFTvMV7EROI2dq3u4e-x4BbGSCedAX-ViAQND6hcreCDXwrO6sHuzh5Xi2IzSqZHxaovnWEboaxuZKRJkA3dsFID6fzitMpm2qrOh4",
1501
+ }, customer_support={
1502
+ "phone": {
1503
+ "number": "8185551212",
1504
+ "country_code": "1",
1505
+ },
1506
+ "email": "jordan.lee@classbooker.dev",
1507
+ "address": {
1508
+ "address_line1": "123 Main Street",
1509
+ "city": "Boulder",
1510
+ "state_or_province": "CO",
1511
+ "postal_code": "80301",
1512
+ "country": "US",
1513
+ "address_line2": "Apt 302",
1514
+ },
1515
+ }, settings={
1516
+ "card_payment": {
1517
+ "statement_descriptor": "Whole Body Fitness",
1518
+ },
1519
+ "ach_payment": {
1520
+ "company_name": "WholeBodyFitness",
1521
+ },
1522
+ }, mode=components.Mode.PRODUCTION)
1523
+
1524
+ # Handle response
1525
+ print(res)
1526
+
1527
+ ```
1528
+ <!-- End Retries [retries] -->
1529
+
1530
+ <!-- Start Error Handling [errors] -->
1531
+ ## Error Handling
1532
+
1533
+ Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an exception.
1534
+
1535
+ By default, an API error will raise a errors.APIError exception, which has the following properties:
1536
+
1537
+ | Property | Type | Description |
1538
+ |-----------------|------------------|-----------------------|
1539
+ | `.status_code` | *int* | The HTTP status code |
1540
+ | `.message` | *str* | The error message |
1541
+ | `.raw_response` | *httpx.Response* | The raw HTTP response |
1542
+ | `.body` | *str* | The response content |
1543
+
1544
+ 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_async` method may raise the following exceptions:
1545
+
1546
+ | Error Type | Status Code | Content Type |
1547
+ | -------------------------------- | ----------- | ---------------- |
1548
+ | errors.GenericError | 400, 409 | application/json |
1549
+ | errors.CreateAccountResponseBody | 422 | application/json |
1550
+ | errors.APIError | 4XX, 5XX | \*/\* |
1551
+
1552
+ ### Example
1553
+
1554
+ ```python
1555
+ from moovio_sdk import Moov
1556
+ from moovio_sdk.models import components, errors
1557
+
1558
+
1559
+ with Moov(
1560
+ security=components.Security(
1561
+ username="",
1562
+ password="",
1563
+ ),
1564
+ ) as moov:
1565
+ res = None
1566
+ try:
1567
+
1568
+ res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
1569
+ individual=components.CreateIndividualProfile(
1570
+ name=components.IndividualName(
1571
+ first_name="Jordan",
1572
+ last_name="Lee",
1573
+ middle_name="Reese",
1574
+ suffix="Jr",
1575
+ ),
1576
+ phone=components.PhoneNumber(
1577
+ number="8185551212",
1578
+ country_code="1",
1579
+ ),
1580
+ email="jordan.lee@classbooker.dev",
1581
+ address=components.Address(
1582
+ address_line1="123 Main Street",
1583
+ city="Boulder",
1584
+ state_or_province="CO",
1585
+ postal_code="80301",
1586
+ country="US",
1587
+ address_line2="Apt 302",
1588
+ ),
1589
+ birth_date=components.BirthDate(
1590
+ day=9,
1591
+ month=11,
1592
+ year=1989,
1593
+ ),
1594
+ ),
1595
+ business=components.CreateBusinessProfile(
1596
+ legal_business_name="Classbooker, LLC",
1597
+ business_type=components.BusinessType.LLC,
1598
+ address=components.Address(
1599
+ address_line1="123 Main Street",
1600
+ city="Boulder",
1601
+ state_or_province="CO",
1602
+ postal_code="80301",
1603
+ country="US",
1604
+ address_line2="Apt 302",
1605
+ ),
1606
+ phone=components.PhoneNumber(
1607
+ number="8185551212",
1608
+ country_code="1",
1609
+ ),
1610
+ email="jordan.lee@classbooker.dev",
1611
+ description="Local fitness gym paying out instructors",
1612
+ tax_id=components.TaxID(
1613
+ ein=components.TaxIDEin(
1614
+ number="12-3456789",
1615
+ ),
1616
+ ),
1617
+ industry_codes=components.IndustryCodes(
1618
+ naics="713940",
1619
+ sic="7991",
1620
+ mcc="7997",
1621
+ ),
1622
+ ),
1623
+ ), metadata={
1624
+ "optional": "metadata",
1625
+ }, terms_of_service={
1626
+ "token": "kgT1uxoMAk7QKuyJcmQE8nqW_HjpyuXBabiXPi6T83fUQoxsyWYPcYzuHQTqrt7YRp4gCwyDQvb6U5REM9Pgl2EloCe35t-eiMAbUWGo3Kerxme6aqNcKrP_6-v0MTXViOEJ96IBxPFTvMV7EROI2dq3u4e-x4BbGSCedAX-ViAQND6hcreCDXwrO6sHuzh5Xi2IzSqZHxaovnWEboaxuZKRJkA3dsFID6fzitMpm2qrOh4",
1627
+ }, customer_support={
1628
+ "phone": {
1629
+ "number": "8185551212",
1630
+ "country_code": "1",
1631
+ },
1632
+ "email": "jordan.lee@classbooker.dev",
1633
+ "address": {
1634
+ "address_line1": "123 Main Street",
1635
+ "city": "Boulder",
1636
+ "state_or_province": "CO",
1637
+ "postal_code": "80301",
1638
+ "country": "US",
1639
+ "address_line2": "Apt 302",
1640
+ },
1641
+ }, settings={
1642
+ "card_payment": {
1643
+ "statement_descriptor": "Whole Body Fitness",
1644
+ },
1645
+ "ach_payment": {
1646
+ "company_name": "WholeBodyFitness",
1647
+ },
1648
+ }, mode=components.Mode.PRODUCTION)
1649
+
1650
+ # Handle response
1651
+ print(res)
1652
+
1653
+ except errors.GenericError as e:
1654
+ # handle e.data: errors.GenericErrorData
1655
+ raise(e)
1656
+ except errors.CreateAccountResponseBody as e:
1657
+ # handle e.data: errors.CreateAccountResponseBodyData
1658
+ raise(e)
1659
+ except errors.APIError as e:
1660
+ # handle exception
1661
+ raise(e)
1662
+ ```
1663
+ <!-- End Error Handling [errors] -->
1664
+
1665
+ <!-- Start Server Selection [server] -->
1666
+ ## Server Selection
1667
+
1668
+ ### Override Server URL Per-Client
1669
+
1670
+ The default server can be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
1671
+ ```python
1672
+ from moovio_sdk import Moov
1673
+ from moovio_sdk.models import components
1674
+
1675
+
1676
+ with Moov(
1677
+ server_url="https://api.moov.io",
1678
+ security=components.Security(
1679
+ username="",
1680
+ password="",
1681
+ ),
1682
+ ) as moov:
1683
+
1684
+ res = moov.accounts.create(account_type=components.AccountType.BUSINESS, profile=components.CreateProfile(
1685
+ individual=components.CreateIndividualProfile(
1686
+ name=components.IndividualName(
1687
+ first_name="Jordan",
1688
+ last_name="Lee",
1689
+ middle_name="Reese",
1690
+ suffix="Jr",
1691
+ ),
1692
+ phone=components.PhoneNumber(
1693
+ number="8185551212",
1694
+ country_code="1",
1695
+ ),
1696
+ email="jordan.lee@classbooker.dev",
1697
+ address=components.Address(
1698
+ address_line1="123 Main Street",
1699
+ city="Boulder",
1700
+ state_or_province="CO",
1701
+ postal_code="80301",
1702
+ country="US",
1703
+ address_line2="Apt 302",
1704
+ ),
1705
+ birth_date=components.BirthDate(
1706
+ day=9,
1707
+ month=11,
1708
+ year=1989,
1709
+ ),
1710
+ ),
1711
+ business=components.CreateBusinessProfile(
1712
+ legal_business_name="Classbooker, LLC",
1713
+ business_type=components.BusinessType.LLC,
1714
+ address=components.Address(
1715
+ address_line1="123 Main Street",
1716
+ city="Boulder",
1717
+ state_or_province="CO",
1718
+ postal_code="80301",
1719
+ country="US",
1720
+ address_line2="Apt 302",
1721
+ ),
1722
+ phone=components.PhoneNumber(
1723
+ number="8185551212",
1724
+ country_code="1",
1725
+ ),
1726
+ email="jordan.lee@classbooker.dev",
1727
+ description="Local fitness gym paying out instructors",
1728
+ tax_id=components.TaxID(
1729
+ ein=components.TaxIDEin(
1730
+ number="12-3456789",
1731
+ ),
1732
+ ),
1733
+ industry_codes=components.IndustryCodes(
1734
+ naics="713940",
1735
+ sic="7991",
1736
+ mcc="7997",
1737
+ ),
1738
+ ),
1739
+ ), metadata={
1740
+ "optional": "metadata",
1741
+ }, terms_of_service={
1742
+ "token": "kgT1uxoMAk7QKuyJcmQE8nqW_HjpyuXBabiXPi6T83fUQoxsyWYPcYzuHQTqrt7YRp4gCwyDQvb6U5REM9Pgl2EloCe35t-eiMAbUWGo3Kerxme6aqNcKrP_6-v0MTXViOEJ96IBxPFTvMV7EROI2dq3u4e-x4BbGSCedAX-ViAQND6hcreCDXwrO6sHuzh5Xi2IzSqZHxaovnWEboaxuZKRJkA3dsFID6fzitMpm2qrOh4",
1743
+ }, customer_support={
1744
+ "phone": {
1745
+ "number": "8185551212",
1746
+ "country_code": "1",
1747
+ },
1748
+ "email": "jordan.lee@classbooker.dev",
1749
+ "address": {
1750
+ "address_line1": "123 Main Street",
1751
+ "city": "Boulder",
1752
+ "state_or_province": "CO",
1753
+ "postal_code": "80301",
1754
+ "country": "US",
1755
+ "address_line2": "Apt 302",
1756
+ },
1757
+ }, settings={
1758
+ "card_payment": {
1759
+ "statement_descriptor": "Whole Body Fitness",
1760
+ },
1761
+ "ach_payment": {
1762
+ "company_name": "WholeBodyFitness",
1763
+ },
1764
+ }, mode=components.Mode.PRODUCTION)
1765
+
1766
+ # Handle response
1767
+ print(res)
1768
+
1769
+ ```
1770
+ <!-- End Server Selection [server] -->
1771
+
1772
+ <!-- Start Custom HTTP Client [http-client] -->
1773
+ ## Custom HTTP Client
1774
+
1775
+ 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.
1776
+ 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.
1777
+ 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.
1778
+
1779
+ For example, you could specify a header for every request that this sdk makes as follows:
1780
+ ```python
1781
+ from moovio_sdk import Moov
1782
+ import httpx
1783
+
1784
+ http_client = httpx.Client(headers={"x-custom-header": "someValue"})
1785
+ s = Moov(client=http_client)
1786
+ ```
1787
+
1788
+ or you could wrap the client with your own custom logic:
1789
+ ```python
1790
+ from moovio_sdk import Moov
1791
+ from moovio_sdk.httpclient import AsyncHttpClient
1792
+ import httpx
1793
+
1794
+ class CustomClient(AsyncHttpClient):
1795
+ client: AsyncHttpClient
1796
+
1797
+ def __init__(self, client: AsyncHttpClient):
1798
+ self.client = client
1799
+
1800
+ async def send(
1801
+ self,
1802
+ request: httpx.Request,
1803
+ *,
1804
+ stream: bool = False,
1805
+ auth: Union[
1806
+ httpx._types.AuthTypes, httpx._client.UseClientDefault, None
1807
+ ] = httpx.USE_CLIENT_DEFAULT,
1808
+ follow_redirects: Union[
1809
+ bool, httpx._client.UseClientDefault
1810
+ ] = httpx.USE_CLIENT_DEFAULT,
1811
+ ) -> httpx.Response:
1812
+ request.headers["Client-Level-Header"] = "added by client"
1813
+
1814
+ return await self.client.send(
1815
+ request, stream=stream, auth=auth, follow_redirects=follow_redirects
1816
+ )
1817
+
1818
+ def build_request(
1819
+ self,
1820
+ method: str,
1821
+ url: httpx._types.URLTypes,
1822
+ *,
1823
+ content: Optional[httpx._types.RequestContent] = None,
1824
+ data: Optional[httpx._types.RequestData] = None,
1825
+ files: Optional[httpx._types.RequestFiles] = None,
1826
+ json: Optional[Any] = None,
1827
+ params: Optional[httpx._types.QueryParamTypes] = None,
1828
+ headers: Optional[httpx._types.HeaderTypes] = None,
1829
+ cookies: Optional[httpx._types.CookieTypes] = None,
1830
+ timeout: Union[
1831
+ httpx._types.TimeoutTypes, httpx._client.UseClientDefault
1832
+ ] = httpx.USE_CLIENT_DEFAULT,
1833
+ extensions: Optional[httpx._types.RequestExtensions] = None,
1834
+ ) -> httpx.Request:
1835
+ return self.client.build_request(
1836
+ method,
1837
+ url,
1838
+ content=content,
1839
+ data=data,
1840
+ files=files,
1841
+ json=json,
1842
+ params=params,
1843
+ headers=headers,
1844
+ cookies=cookies,
1845
+ timeout=timeout,
1846
+ extensions=extensions,
1847
+ )
1848
+
1849
+ s = Moov(async_client=CustomClient(httpx.AsyncClient()))
1850
+ ```
1851
+ <!-- End Custom HTTP Client [http-client] -->
1852
+
1853
+ <!-- Start Resource Management [resource-management] -->
1854
+ ## Resource Management
1855
+
1856
+ The `Moov` class implements the context manager protocol and registers a finalizer function to close the underlying sync and async HTTPX clients it uses under the hood. This will close HTTP connections, release memory and free up other resources held by the SDK. In short-lived Python programs and notebooks that make a few SDK method calls, resource management may not be a concern. However, in longer-lived programs, it is beneficial to create a single SDK instance via a [context manager][context-manager] and reuse it across the application.
1857
+
1858
+ [context-manager]: https://docs.python.org/3/reference/datamodel.html#context-managers
1859
+
1860
+ ```python
1861
+ from moovio_sdk import Moov
1862
+ from moovio_sdk.models import components
1863
+ def main():
1864
+
1865
+ with Moov(
1866
+ security=components.Security(
1867
+ username="",
1868
+ password="",
1869
+ ),
1870
+ ) as moov:
1871
+ # Rest of application here...
1872
+
1873
+
1874
+ # Or when using async:
1875
+ async def amain():
1876
+
1877
+ async with Moov(
1878
+ security=components.Security(
1879
+ username="",
1880
+ password="",
1881
+ ),
1882
+ ) as moov:
1883
+ # Rest of application here...
1884
+ ```
1885
+ <!-- End Resource Management [resource-management] -->
1886
+
1887
+ <!-- Start Debugging [debug] -->
1888
+ ## Debugging
1889
+
1890
+ You can setup your SDK to emit debug logs for SDK requests and responses.
1891
+
1892
+ You can pass your own logger class directly into your SDK.
1893
+ ```python
1894
+ from moovio_sdk import Moov
1895
+ import logging
1896
+
1897
+ logging.basicConfig(level=logging.DEBUG)
1898
+ s = Moov(debug_logger=logging.getLogger("moovio_sdk"))
1899
+ ```
1900
+
1901
+ You can also enable a default debug logger by setting an environment variable `MOOV_DEBUG` to true.
1902
+ <!-- End Debugging [debug] -->
1903
+
1904
+ <!-- Placeholder for Future Speakeasy SDK Sections -->
1905
+
1906
+ # Development
1907
+
1908
+ ## Maturity
1909
+
1910
+ This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
1911
+ to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
1912
+ looking for the latest version.
1913
+
1914
+ ## Contributions
1915
+
1916
+ While we value open-source contributions to this SDK, this library is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation.
1917
+ We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release.
1918
+
1919
+ ### SDK Created by [Speakeasy](https://www.speakeasy.com/?utm_source=moovio-sdk&utm_campaign=python)
1920
+