@moovio/sdk 0.22.0 → 0.22.2
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.
- package/README.md +130 -134
- package/bin/mcp-server.js +945 -1167
- package/bin/mcp-server.js.map +11 -17
- package/examples/package-lock.json +1 -1
- package/funcs/institutionsSearch.d.ts +4 -0
- package/funcs/institutionsSearch.d.ts.map +1 -1
- package/funcs/institutionsSearch.js +4 -0
- package/funcs/institutionsSearch.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.d.ts.map +1 -1
- package/mcp-server/server.js +1 -3
- package/mcp-server/server.js.map +1 -1
- package/mcp-server/tools/institutionsSearch.d.ts.map +1 -1
- package/mcp-server/tools/institutionsSearch.js +3 -1
- package/mcp-server/tools/institutionsSearch.js.map +1 -1
- package/models/components/index.d.ts +0 -3
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +0 -3
- package/models/components/index.js.map +1 -1
- package/models/components/invoicelineitemoption.d.ts +6 -0
- package/models/components/invoicelineitemoption.d.ts.map +1 -1
- package/models/components/invoicelineitemoption.js +3 -0
- package/models/components/invoicelineitemoption.js.map +1 -1
- package/models/operations/index.d.ts +0 -1
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +0 -1
- package/models/operations/index.js.map +1 -1
- package/package.json +1 -1
- package/sdk/branding.d.ts +0 -7
- package/sdk/branding.d.ts.map +1 -1
- package/sdk/branding.js +0 -10
- package/sdk/branding.js.map +1 -1
- package/sdk/institutions.d.ts +4 -0
- package/sdk/institutions.d.ts.map +1 -1
- package/sdk/institutions.js +4 -0
- package/sdk/institutions.js.map +1 -1
- package/src/funcs/institutionsSearch.ts +4 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -3
- package/src/mcp-server/tools/institutionsSearch.ts +4 -1
- package/src/models/components/index.ts +0 -3
- package/src/models/components/invoicelineitemoption.ts +13 -0
- package/src/models/operations/index.ts +0 -1
- package/src/sdk/branding.ts +0 -18
- package/src/sdk/institutions.ts +4 -0
- package/funcs/brandingUpdate.d.ts +0 -18
- package/funcs/brandingUpdate.d.ts.map +0 -1
- package/funcs/brandingUpdate.js +0 -139
- package/funcs/brandingUpdate.js.map +0 -1
- package/mcp-server/tools/brandingUpdate.d.ts +0 -8
- package/mcp-server/tools/brandingUpdate.d.ts.map +0 -1
- package/mcp-server/tools/brandingUpdate.js +0 -65
- package/mcp-server/tools/brandingUpdate.js.map +0 -1
- package/models/components/updatebrand.d.ts +0 -18
- package/models/components/updatebrand.d.ts.map +0 -1
- package/models/components/updatebrand.js +0 -59
- package/models/components/updatebrand.js.map +0 -1
- package/models/components/updatecolor.d.ts +0 -17
- package/models/components/updatecolor.d.ts.map +0 -1
- package/models/components/updatecolor.js +0 -58
- package/models/components/updatecolor.js.map +0 -1
- package/models/components/updatecolors.d.ts +0 -20
- package/models/components/updatecolors.d.ts.map +0 -1
- package/models/components/updatecolors.js +0 -61
- package/models/components/updatecolors.js.map +0 -1
- package/models/operations/updatebrand.d.ts +0 -66
- package/models/operations/updatebrand.d.ts.map +0 -1
- package/models/operations/updatebrand.js +0 -122
- package/models/operations/updatebrand.js.map +0 -1
- package/src/funcs/brandingUpdate.ts +0 -201
- package/src/mcp-server/tools/brandingUpdate.ts +0 -38
- package/src/models/components/updatebrand.ts +0 -53
- package/src/models/components/updatecolor.ts +0 -47
- package/src/models/components/updatecolors.ts +0 -57
- package/src/models/operations/updatebrand.ts +0 -187
package/README.md
CHANGED
|
@@ -248,7 +248,26 @@ run();
|
|
|
248
248
|
<details open>
|
|
249
249
|
<summary>Available methods</summary>
|
|
250
250
|
|
|
251
|
-
### [
|
|
251
|
+
### [AccountTerminalApplications](docs/sdks/accountterminalapplications/README.md)
|
|
252
|
+
|
|
253
|
+
* [link](docs/sdks/accountterminalapplications/README.md#link) - Link an account with a terminal application.
|
|
254
|
+
|
|
255
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
256
|
+
you'll need to specify the `/accounts/{accountID}/terminal-applications.write` scope.
|
|
257
|
+
* [list](docs/sdks/accountterminalapplications/README.md#list) - Retrieve all terminal applications linked to a specific account.
|
|
258
|
+
|
|
259
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
260
|
+
you'll need to specify the `/accounts/{accountID}/terminal-applications.read` scope.
|
|
261
|
+
* [get](docs/sdks/accountterminalapplications/README.md#get) - Verifies if a specific Terminal Application is linked to an Account. This endpoint acts as a validation check for the link's existence.
|
|
262
|
+
|
|
263
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
264
|
+
you'll need to specify the `/accounts/{accountID}/terminal-applications.read` scope.
|
|
265
|
+
* [getConfiguration](docs/sdks/accountterminalapplications/README.md#getconfiguration) - Fetch the configuration for a given Terminal Application linked to a specific Account.
|
|
266
|
+
|
|
267
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
268
|
+
you'll need to specify the `/accounts/{accountID}/terminal-configuration.read` scope.
|
|
269
|
+
|
|
270
|
+
### [Accounts](docs/sdks/accounts/README.md)
|
|
252
271
|
|
|
253
272
|
* [create](docs/sdks/accounts/README.md#create) - You can create **business** or **individual** accounts for your users (i.e., customers, merchants) by passing the required
|
|
254
273
|
information to Moov. Requirements differ per account type and requested [capabilities](https://docs.moov.io/guides/accounts/capabilities/requirements/).
|
|
@@ -315,26 +334,7 @@ This token can only be generated via API. Any Moov account requesting the collec
|
|
|
315
334
|
or card issuing capabilities must accept Moov's terms of service, then have the generated terms of service
|
|
316
335
|
token patched to the account. Read more in our [documentation](https://docs.moov.io/guides/accounts/requirements/platform-agreement/).
|
|
317
336
|
|
|
318
|
-
### [
|
|
319
|
-
|
|
320
|
-
* [link](docs/sdks/accountterminalapplications/README.md#link) - Link an account with a terminal application.
|
|
321
|
-
|
|
322
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
323
|
-
you'll need to specify the `/accounts/{accountID}/terminal-applications.write` scope.
|
|
324
|
-
* [list](docs/sdks/accountterminalapplications/README.md#list) - Retrieve all terminal applications linked to a specific account.
|
|
325
|
-
|
|
326
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
327
|
-
you'll need to specify the `/accounts/{accountID}/terminal-applications.read` scope.
|
|
328
|
-
* [get](docs/sdks/accountterminalapplications/README.md#get) - Verifies if a specific Terminal Application is linked to an Account. This endpoint acts as a validation check for the link's existence.
|
|
329
|
-
|
|
330
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
331
|
-
you'll need to specify the `/accounts/{accountID}/terminal-applications.read` scope.
|
|
332
|
-
* [getConfiguration](docs/sdks/accountterminalapplications/README.md#getconfiguration) - Fetch the configuration for a given Terminal Application linked to a specific Account.
|
|
333
|
-
|
|
334
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
335
|
-
you'll need to specify the `/accounts/{accountID}/terminal-configuration.read` scope.
|
|
336
|
-
|
|
337
|
-
### [adjustments](docs/sdks/adjustments/README.md)
|
|
337
|
+
### [Adjustments](docs/sdks/adjustments/README.md)
|
|
338
338
|
|
|
339
339
|
* [list](docs/sdks/adjustments/README.md#list) - List adjustments associated with a Moov account.
|
|
340
340
|
|
|
@@ -345,7 +345,7 @@ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
|
|
|
345
345
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
346
346
|
you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
|
|
347
347
|
|
|
348
|
-
### [
|
|
348
|
+
### [ApplePay](docs/sdks/applepay/README.md)
|
|
349
349
|
|
|
350
350
|
* [registerMerchantDomains](docs/sdks/applepay/README.md#registermerchantdomains) - Add domains to be registered with Apple Pay.
|
|
351
351
|
|
|
@@ -382,21 +382,21 @@ The `token` data is defined by Apple Pay and should be passed through from Apple
|
|
|
382
382
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
383
383
|
you'll need to specify the `/accounts/{accountID}/cards.write` scope.
|
|
384
384
|
|
|
385
|
-
### [
|
|
385
|
+
### [Authentication](docs/sdks/authentication/README.md)
|
|
386
386
|
|
|
387
387
|
* [revokeAccessToken](docs/sdks/authentication/README.md#revokeaccesstoken) - Revoke an auth token.
|
|
388
388
|
|
|
389
389
|
Allows clients to notify the authorization server that a previously obtained refresh or access token is no longer needed.
|
|
390
390
|
* [createAccessToken](docs/sdks/authentication/README.md#createaccesstoken) - Create or refresh an access token.
|
|
391
391
|
|
|
392
|
-
### [
|
|
392
|
+
### [Avatars](docs/sdks/avatars/README.md)
|
|
393
393
|
|
|
394
394
|
* [get](docs/sdks/avatars/README.md#get) - Get avatar image for an account using a unique ID.
|
|
395
395
|
|
|
396
396
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
397
397
|
you'll need to specify the `/profile-enrichment.read` scope.
|
|
398
398
|
|
|
399
|
-
### [
|
|
399
|
+
### [BankAccounts](docs/sdks/bankaccounts/README.md)
|
|
400
400
|
|
|
401
401
|
* [link](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.
|
|
402
402
|
|
|
@@ -486,7 +486,7 @@ The following formats are accepted:
|
|
|
486
486
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
487
487
|
you'll need to specify the `/accounts/{accountID}/bank-accounts.write` scope.
|
|
488
488
|
|
|
489
|
-
### [
|
|
489
|
+
### [Branding](docs/sdks/branding/README.md)
|
|
490
490
|
|
|
491
491
|
* [create](docs/sdks/branding/README.md#create) - Create brand properties for the specified account.
|
|
492
492
|
|
|
@@ -500,12 +500,8 @@ you'll need to specify the `/accounts/{accountID}/branding.write` scope.
|
|
|
500
500
|
|
|
501
501
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
502
502
|
you'll need to specify the `/accounts/{accountID}/branding.read` scope.
|
|
503
|
-
* [update](docs/sdks/branding/README.md#update) - Updates the brand properties for the specified account.
|
|
504
|
-
|
|
505
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
506
|
-
you'll need to specify the `/accounts/{accountID}/branding.write` scope.
|
|
507
503
|
|
|
508
|
-
### [
|
|
504
|
+
### [Capabilities](docs/sdks/capabilities/README.md)
|
|
509
505
|
|
|
510
506
|
* [list](docs/sdks/capabilities/README.md#list) - Retrieve all the capabilities an account has requested.
|
|
511
507
|
|
|
@@ -526,7 +522,7 @@ you'll need to specify the `/accounts/{accountID}/capabilities.read` scope.
|
|
|
526
522
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
527
523
|
you'll need to specify the `/accounts/{accountID}/capabilities.write` scope.
|
|
528
524
|
|
|
529
|
-
### [
|
|
525
|
+
### [CardIssuing](docs/sdks/cardissuing/README.md)
|
|
530
526
|
|
|
531
527
|
* [request](docs/sdks/cardissuing/README.md#request) - Request a virtual card be issued.
|
|
532
528
|
|
|
@@ -551,7 +547,7 @@ Only use this endpoint if you have provided Moov with a copy of your PCI attesta
|
|
|
551
547
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
552
548
|
you'll need to specify the `/accounts/{accountID}/issued-cards.read-secure` scope.
|
|
553
549
|
|
|
554
|
-
### [
|
|
550
|
+
### [Cards](docs/sdks/cards/README.md)
|
|
555
551
|
|
|
556
552
|
* [link](docs/sdks/cards/README.md#link) - Link a card to an existing Moov account.
|
|
557
553
|
|
|
@@ -601,7 +597,7 @@ you'll need to specify the `/accounts/{accountID}/cards.write` scope.
|
|
|
601
597
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
602
598
|
you'll need to specify the `/accounts/{accountID}/cards.write` scope.
|
|
603
599
|
|
|
604
|
-
### [
|
|
600
|
+
### [Disputes](docs/sdks/disputes/README.md)
|
|
605
601
|
|
|
606
602
|
* [list](docs/sdks/disputes/README.md#list) - Returns the list of disputes.
|
|
607
603
|
|
|
@@ -673,7 +669,7 @@ Read our [disputes guide](https://docs.moov.io/guides/money-movement/accept-paym
|
|
|
673
669
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
674
670
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
|
675
671
|
|
|
676
|
-
### [
|
|
672
|
+
### [EndToEndEncryption](docs/sdks/endtoendencryption/README.md)
|
|
677
673
|
|
|
678
674
|
* [testEncryptedToken](docs/sdks/endtoendencryption/README.md#testencryptedtoken) - Allows for testing a JWE token to ensure it's acceptable by Moov.
|
|
679
675
|
|
|
@@ -681,21 +677,21 @@ To access this endpoint using an [access token](https://docs.moov.io/api/authent
|
|
|
681
677
|
you'll need to specify the `/ping.read` scope.
|
|
682
678
|
* [generateKey](docs/sdks/endtoendencryption/README.md#generatekey) - Generates a public key used to create a JWE token for passing secure authentication data through non-PCI compliant intermediaries.
|
|
683
679
|
|
|
684
|
-
### [
|
|
680
|
+
### [EnrichedAddress](docs/sdks/enrichedaddress/README.md)
|
|
685
681
|
|
|
686
682
|
* [get](docs/sdks/enrichedaddress/README.md#get) - Fetch enriched address suggestions. Requires a partial address.
|
|
687
683
|
|
|
688
684
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
689
685
|
you'll need to specify the `/profile-enrichment.read` scope.
|
|
690
686
|
|
|
691
|
-
### [
|
|
687
|
+
### [EnrichedProfile](docs/sdks/enrichedprofile/README.md)
|
|
692
688
|
|
|
693
689
|
* [get](docs/sdks/enrichedprofile/README.md#get) - Fetch enriched profile data. Requires a valid email address. This service is offered in collaboration with Clearbit.
|
|
694
690
|
|
|
695
691
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
696
692
|
you'll need to specify the `/profile-enrichment.read` scope.
|
|
697
693
|
|
|
698
|
-
### [
|
|
694
|
+
### [FeePlans](docs/sdks/feeplans/README.md)
|
|
699
695
|
|
|
700
696
|
* [listFeePlanAgreements](docs/sdks/feeplans/README.md#listfeeplanagreements) - List all fee plan agreements associated with an account.
|
|
701
697
|
|
|
@@ -743,7 +739,7 @@ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
|
|
|
743
739
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
744
740
|
you'll need to specify the `/accounts/{accountID}/profile.read` scope.
|
|
745
741
|
|
|
746
|
-
### [
|
|
742
|
+
### [Files](docs/sdks/files/README.md)
|
|
747
743
|
|
|
748
744
|
* [upload](docs/sdks/files/README.md#upload) - Upload a file and link it to the specified Moov account.
|
|
749
745
|
|
|
@@ -761,7 +757,7 @@ you'll need to specify the `/accounts/{accountID}/files.read` scope.
|
|
|
761
757
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
762
758
|
you'll need to specify the `/accounts/{accountID}/files.read` scope.
|
|
763
759
|
|
|
764
|
-
### [
|
|
760
|
+
### [Images](docs/sdks/images/README.md)
|
|
765
761
|
|
|
766
762
|
* [list](docs/sdks/images/README.md#list) - List metadata for all images in the specified account.
|
|
767
763
|
* [upload](docs/sdks/images/README.md#upload) - Upload a new PNG, JPEG, or WebP image with optional metadata.
|
|
@@ -775,14 +771,14 @@ the metadata form section to keep existing metadata. Duplicate images, and reque
|
|
|
775
771
|
* [updateMetadata](docs/sdks/images/README.md#updatemetadata) - Replace the metadata for an existing image.
|
|
776
772
|
* [getPublic](docs/sdks/images/README.md#getpublic) - Get an image by its public ID.
|
|
777
773
|
|
|
778
|
-
### [
|
|
774
|
+
### [Industries](docs/sdks/industries/README.md)
|
|
779
775
|
|
|
780
776
|
* [list](docs/sdks/industries/README.md#list) - Returns a list of industries relevant to merchant profile enrichment. Results are ordered by industry name.
|
|
781
777
|
|
|
782
778
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/),
|
|
783
779
|
you'll need to specify the `/profile-enrichment.read` scope.
|
|
784
780
|
|
|
785
|
-
### [
|
|
781
|
+
### [Institutions](docs/sdks/institutions/README.md)
|
|
786
782
|
|
|
787
783
|
* [searchInstitutions](docs/sdks/institutions/README.md#searchinstitutions) - Search for financial institutions by name or routing number.
|
|
788
784
|
|
|
@@ -792,12 +788,14 @@ This can be used to validate a financial institution before initiating payment a
|
|
|
792
788
|
|
|
793
789
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
794
790
|
you'll need to specify the `/institutions.read` scope.
|
|
795
|
-
* [search](docs/sdks/institutions/README.md#search) -
|
|
791
|
+
* [~~search~~](docs/sdks/institutions/README.md#search) - This endpoint has been deprecated and will be removed in a future release. Use [/institutions](https://docs.moov.io/api/enrichment/form-shortening/institutions/get/).
|
|
792
|
+
|
|
793
|
+
Search for institutions by either their name or routing number.
|
|
796
794
|
|
|
797
795
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
798
|
-
you'll need to specify the `/fed.read` scope.
|
|
796
|
+
you'll need to specify the `/fed.read` scope. :warning: **Deprecated**
|
|
799
797
|
|
|
800
|
-
### [
|
|
798
|
+
### [Invoices](docs/sdks/invoices/README.md)
|
|
801
799
|
|
|
802
800
|
* [createInvoice](docs/sdks/invoices/README.md#createinvoice) - Create an invoice for a Moov account.
|
|
803
801
|
|
|
@@ -821,7 +819,7 @@ If a payment link was created, the corresponding payment link is canceled, but a
|
|
|
821
819
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
822
820
|
you'll need to specify the `/accounts/{accountID}/invoices.write` scope.
|
|
823
821
|
|
|
824
|
-
### [
|
|
822
|
+
### [IssuingTransactions](docs/sdks/issuingtransactions/README.md)
|
|
825
823
|
|
|
826
824
|
* [listAuthorizations](docs/sdks/issuingtransactions/README.md#listauthorizations) - List issued card authorizations associated with a Moov account.
|
|
827
825
|
|
|
@@ -844,7 +842,7 @@ you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope.
|
|
|
844
842
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
845
843
|
you'll need to specify the `/accounts/{accountID}/issued-cards.read` scope.
|
|
846
844
|
|
|
847
|
-
### [
|
|
845
|
+
### [Onboarding](docs/sdks/onboarding/README.md)
|
|
848
846
|
|
|
849
847
|
* [createInvite](docs/sdks/onboarding/README.md#createinvite) - Create an invitation containing a unique link that allows the recipient to onboard their organization with Moov.
|
|
850
848
|
|
|
@@ -863,7 +861,7 @@ you'll need to specify the `/accounts.read` scope.
|
|
|
863
861
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
864
862
|
you'll need to specify the `/accounts.write` scope.
|
|
865
863
|
|
|
866
|
-
### [
|
|
864
|
+
### [PaymentLinks](docs/sdks/paymentlinks/README.md)
|
|
867
865
|
|
|
868
866
|
* [create](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.
|
|
869
867
|
|
|
@@ -892,7 +890,7 @@ Use the `Accept` header to specify the format of the response. Supported formats
|
|
|
892
890
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
893
891
|
you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
|
894
892
|
|
|
895
|
-
### [
|
|
893
|
+
### [PaymentMethods](docs/sdks/paymentmethods/README.md)
|
|
896
894
|
|
|
897
895
|
* [list](docs/sdks/paymentmethods/README.md#list) - Retrieve a list of payment methods associated with a Moov account. Read our [payment methods
|
|
898
896
|
guide](https://docs.moov.io/guides/money-movement/payment-methods/) to learn more.
|
|
@@ -904,14 +902,14 @@ you'll need to specify the `/accounts/{accountID}/payment-methods.read` scope.
|
|
|
904
902
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
905
903
|
you'll need to specify the `/accounts/{accountID}/payment-methods.read` scope.
|
|
906
904
|
|
|
907
|
-
### [
|
|
905
|
+
### [Ping](docs/sdks/ping/README.md)
|
|
908
906
|
|
|
909
907
|
* [ping](docs/sdks/ping/README.md#ping) - A simple endpoint to check auth.
|
|
910
908
|
|
|
911
909
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
912
910
|
you'll need to specify the `/ping.read` scope.
|
|
913
911
|
|
|
914
|
-
### [
|
|
912
|
+
### [Products](docs/sdks/products/README.md)
|
|
915
913
|
|
|
916
914
|
* [list](docs/sdks/products/README.md#list) - List active (non-disabled) products for an account.
|
|
917
915
|
* [create](docs/sdks/products/README.md#create) - Creates a new product for the specified account.
|
|
@@ -921,7 +919,7 @@ you'll need to specify the `/ping.read` scope.
|
|
|
921
919
|
|
|
922
920
|
The product will no longer be available, but will remain in the system for historical and reporting purposes.
|
|
923
921
|
|
|
924
|
-
### [
|
|
922
|
+
### [Receipts](docs/sdks/receipts/README.md)
|
|
925
923
|
|
|
926
924
|
* [create](docs/sdks/receipts/README.md#create) - Create receipts for transfers and scheduled transfers.
|
|
927
925
|
|
|
@@ -932,7 +930,7 @@ The product will no longer be available, but will remain in the system for histo
|
|
|
932
930
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
933
931
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
|
934
932
|
|
|
935
|
-
### [
|
|
933
|
+
### [Representatives](docs/sdks/representatives/README.md)
|
|
936
934
|
|
|
937
935
|
* [create](docs/sdks/representatives/README.md#create) - Moov accounts associated with businesses require information regarding individuals who represent the business.
|
|
938
936
|
You can provide this information by creating a representative. Each account is allowed a maximum of 7 representatives.
|
|
@@ -973,7 +971,7 @@ If you need to update information in a locked state, please contact Moov support
|
|
|
973
971
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
974
972
|
you'll need to specify the `/accounts/{accountID}/representatives.write` scope.
|
|
975
973
|
|
|
976
|
-
### [
|
|
974
|
+
### [Scheduling](docs/sdks/scheduling/README.md)
|
|
977
975
|
|
|
978
976
|
* [create](docs/sdks/scheduling/README.md#create) - Describes the schedule to create or modify.
|
|
979
977
|
|
|
@@ -1000,7 +998,7 @@ you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
|
|
1000
998
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1001
999
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
|
1002
1000
|
|
|
1003
|
-
### [
|
|
1001
|
+
### [Statements](docs/sdks/statements/README.md)
|
|
1004
1002
|
|
|
1005
1003
|
* [list](docs/sdks/statements/README.md#list) - Retrieve all statements associated with an account.
|
|
1006
1004
|
|
|
@@ -1013,7 +1011,7 @@ Use the `Accept` header to specify the format of the response. Supported formats
|
|
|
1013
1011
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1014
1012
|
you'll need to specify the `/accounts/{accountID}/profile.read` scope.
|
|
1015
1013
|
|
|
1016
|
-
### [
|
|
1014
|
+
### [Support](docs/sdks/support/README.md)
|
|
1017
1015
|
|
|
1018
1016
|
* [createTicket](docs/sdks/support/README.md#createticket) - Create a support ticket for a Moov account.
|
|
1019
1017
|
|
|
@@ -1051,7 +1049,7 @@ you'll need to specify the `/accounts/{accountID}/tickets.read` scope.
|
|
|
1051
1049
|
If you're listing another account's messages, then you'll need to
|
|
1052
1050
|
specify the `/accounts/{partnerAccountID}/tickets.read` and `/accounts/{accountID}/profile.read` scopes.
|
|
1053
1051
|
|
|
1054
|
-
### [
|
|
1052
|
+
### [Sweeps](docs/sdks/sweeps/README.md)
|
|
1055
1053
|
|
|
1056
1054
|
* [createConfig](docs/sdks/sweeps/README.md#createconfig) - Create a sweep config for a wallet.
|
|
1057
1055
|
|
|
@@ -1078,7 +1076,7 @@ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
|
|
|
1078
1076
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1079
1077
|
you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
|
|
1080
1078
|
|
|
1081
|
-
### [
|
|
1079
|
+
### [TerminalApplications](docs/sdks/terminalapplications/README.md)
|
|
1082
1080
|
|
|
1083
1081
|
* [create](docs/sdks/terminalapplications/README.md#create) - Create a new terminal application.
|
|
1084
1082
|
|
|
@@ -1101,7 +1099,7 @@ you'll need to specify the `/terminal-applications.write` scope.
|
|
|
1101
1099
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1102
1100
|
you'll need to specify the `/terminal-applications.write` scope.
|
|
1103
1101
|
|
|
1104
|
-
### [
|
|
1102
|
+
### [Transfers](docs/sdks/transfers/README.md)
|
|
1105
1103
|
|
|
1106
1104
|
* [generateOptions](docs/sdks/transfers/README.md#generateoptions) - Generate available payment method options for one or multiple transfer participants depending on the accountID or paymentMethodID you
|
|
1107
1105
|
supply in the request body.
|
|
@@ -1172,7 +1170,7 @@ to learn more.
|
|
|
1172
1170
|
To access this endpoint using a [token](https://docs.moov.io/api/authentication/access-tokens/) you'll need
|
|
1173
1171
|
to specify the `/accounts/{accountID}/transfers.write` scope.
|
|
1174
1172
|
|
|
1175
|
-
### [
|
|
1173
|
+
### [Underwriting](docs/sdks/underwriting/README.md)
|
|
1176
1174
|
|
|
1177
1175
|
* [get](docs/sdks/underwriting/README.md#get) - Retrieve underwriting associated with a given Moov account.
|
|
1178
1176
|
|
|
@@ -1193,7 +1191,22 @@ Read our [underwriting guide](https://docs.moov.io/guides/accounts/requirements/
|
|
|
1193
1191
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1194
1192
|
you'll need to specify the `/accounts/{accountID}/profile.write` scope.
|
|
1195
1193
|
|
|
1196
|
-
### [
|
|
1194
|
+
### [WalletTransactions](docs/sdks/wallettransactions/README.md)
|
|
1195
|
+
|
|
1196
|
+
* [list](docs/sdks/wallettransactions/README.md#list) - List all the transactions associated with a particular Moov wallet.
|
|
1197
|
+
|
|
1198
|
+
Read our [wallet transactions guide](https://docs.moov.io/guides/sources/wallets/transactions/) 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}/wallets.read` scope.
|
|
1202
|
+
* [get](docs/sdks/wallettransactions/README.md#get) - Get details on a specific wallet transaction.
|
|
1203
|
+
|
|
1204
|
+
Read our [wallet transactions guide](https://docs.moov.io/guides/sources/wallets/transactions/) to learn more.
|
|
1205
|
+
|
|
1206
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1207
|
+
you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
|
|
1208
|
+
|
|
1209
|
+
### [Wallets](docs/sdks/wallets/README.md)
|
|
1197
1210
|
|
|
1198
1211
|
* [create](docs/sdks/wallets/README.md#create) - Create a new wallet for an account. You can specify optional attributes such as a display name and description to specify the intended use of the wallet. This will generate a new moov-wallet payment method.
|
|
1199
1212
|
|
|
@@ -1220,21 +1233,6 @@ Read our [Moov wallets guide](https://docs.moov.io/guides/sources/wallets/) to l
|
|
|
1220
1233
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1221
1234
|
you'll need to specify the `/accounts/{accountID}/wallets.write` scope.
|
|
1222
1235
|
|
|
1223
|
-
### [walletTransactions](docs/sdks/wallettransactions/README.md)
|
|
1224
|
-
|
|
1225
|
-
* [list](docs/sdks/wallettransactions/README.md#list) - List all the transactions associated with a particular Moov wallet.
|
|
1226
|
-
|
|
1227
|
-
Read our [wallet transactions guide](https://docs.moov.io/guides/sources/wallets/transactions/) to learn more.
|
|
1228
|
-
|
|
1229
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1230
|
-
you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
|
|
1231
|
-
* [get](docs/sdks/wallettransactions/README.md#get) - Get details on a specific wallet transaction.
|
|
1232
|
-
|
|
1233
|
-
Read our [wallet transactions guide](https://docs.moov.io/guides/sources/wallets/transactions/) to learn more.
|
|
1234
|
-
|
|
1235
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1236
|
-
you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
|
|
1237
|
-
|
|
1238
1236
|
</details>
|
|
1239
1237
|
<!-- End Available Resources and Operations [operations] -->
|
|
1240
1238
|
|
|
@@ -1478,10 +1476,6 @@ you'll need to specify the `/accounts/{accountID}/branding.write` scope.
|
|
|
1478
1476
|
|
|
1479
1477
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1480
1478
|
you'll need to specify the `/accounts/{accountID}/branding.read` scope.
|
|
1481
|
-
- [`brandingUpdate`](docs/sdks/branding/README.md#update) - Updates the brand properties for the specified account.
|
|
1482
|
-
|
|
1483
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1484
|
-
you'll need to specify the `/accounts/{accountID}/branding.write` scope.
|
|
1485
1479
|
- [`brandingUpsert`](docs/sdks/branding/README.md#upsert) - Create or replace brand properties for the specified account.
|
|
1486
1480
|
|
|
1487
1481
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
@@ -1730,10 +1724,6 @@ the metadata form section to keep existing metadata. Duplicate images, and reque
|
|
|
1730
1724
|
|
|
1731
1725
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/),
|
|
1732
1726
|
you'll need to specify the `/profile-enrichment.read` scope.
|
|
1733
|
-
- [`institutionsSearch`](docs/sdks/institutions/README.md#search) - Search for institutions by either their name or routing number.
|
|
1734
|
-
|
|
1735
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1736
|
-
you'll need to specify the `/fed.read` scope.
|
|
1737
1727
|
- [`institutionsSearchInstitutions`](docs/sdks/institutions/README.md#searchinstitutions) - Search for financial institutions by name or routing number.
|
|
1738
1728
|
|
|
1739
1729
|
This endpoint returns metadata about each matched institution, including basic identifying details (such as name, routing number, and address) and information about which payment services they support (e.g., ACH, RTP, and Wire).
|
|
@@ -2126,6 +2116,12 @@ Read our [wallet transactions guide](https://docs.moov.io/guides/sources/wallets
|
|
|
2126
2116
|
|
|
2127
2117
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
2128
2118
|
you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
|
|
2119
|
+
- ~~[`institutionsSearch`](docs/sdks/institutions/README.md#search)~~ - This endpoint has been deprecated and will be removed in a future release. Use [/institutions](https://docs.moov.io/api/enrichment/form-shortening/institutions/get/).
|
|
2120
|
+
|
|
2121
|
+
Search for institutions by either their name or routing number.
|
|
2122
|
+
|
|
2123
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
2124
|
+
you'll need to specify the `/fed.read` scope. :warning: **Deprecated**
|
|
2129
2125
|
|
|
2130
2126
|
</details>
|
|
2131
2127
|
<!-- End Standalone functions [standalone-funcs] -->
|
|
@@ -2335,56 +2331,56 @@ run();
|
|
|
2335
2331
|
|
|
2336
2332
|
|
|
2337
2333
|
**Inherit from [`MoovError`](./src/models/errors/mooverror.ts)**:
|
|
2338
|
-
* [`GenericError`](./src/models/errors/genericerror.ts): Applicable to
|
|
2339
|
-
* [`BrandValidationError`](./src/models/errors/brandvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to
|
|
2340
|
-
* [`ImageRequestValidationError`](./src/models/errors/imagerequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
2341
|
-
* [`ProductRequestValidationError`](./src/models/errors/productrequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
2342
|
-
* [`ScheduleValidationError`](./src/models/errors/schedulevalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
2343
|
-
* [`TerminalApplicationError`](./src/models/errors/terminalapplicationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of
|
|
2344
|
-
* [`Transfer`](./src/models/errors/transfer.ts): Details of a Transfer. Status code `409`. Applicable to 1 of
|
|
2345
|
-
* [`CardAcquiringRefund`](./src/models/errors/cardacquiringrefund.ts): Details of a card refund. Status code `409`. Applicable to 1 of
|
|
2346
|
-
* [`CreateAccountError`](./src/models/errors/createaccounterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2347
|
-
* [`PatchAccountError`](./src/models/errors/patchaccounterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2348
|
-
* [`AssignCountriesError`](./src/models/errors/assigncountrieserror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2349
|
-
* [`LinkApplePayError`](./src/models/errors/linkapplepayerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2350
|
-
* [`BankAccountValidationError`](./src/models/errors/bankaccountvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2351
|
-
* [`MicroDepositValidationError`](./src/models/errors/microdepositvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2352
|
-
* [`AddCapabilitiesError`](./src/models/errors/addcapabilitieserror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2353
|
-
* [`LinkCardError`](./src/models/errors/linkcarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2354
|
-
* [`UpdateCardError`](./src/models/errors/updatecarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2355
|
-
* [`FileUploadValidationError`](./src/models/errors/fileuploadvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2356
|
-
* [`FeePlanAgreementError`](./src/models/errors/feeplanagreementerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2357
|
-
* [`FileValidationError`](./src/models/errors/filevalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2358
|
-
* [`ImageMetadataValidationError`](./src/models/errors/imagemetadatavalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2359
|
-
* [`CreateInvoiceError`](./src/models/errors/createinvoiceerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2360
|
-
* [`ListInvoicesValidationError`](./src/models/errors/listinvoicesvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2361
|
-
* [`UpdateInvoiceError`](./src/models/errors/updateinvoiceerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2362
|
-
* [`MarkInvoicePaidError`](./src/models/errors/markinvoicepaiderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2363
|
-
* [`CreatePaymentLinkError`](./src/models/errors/createpaymentlinkerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2364
|
-
* [`UpdatePaymentLinkError`](./src/models/errors/updatepaymentlinkerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2365
|
-
* [`RepresentativeValidationError`](./src/models/errors/representativevalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2366
|
-
* [`CreateSweepConfigError`](./src/models/errors/createsweepconfigerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2367
|
-
* [`PatchSweepConfigError`](./src/models/errors/patchsweepconfigerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2368
|
-
* [`AccountTerminalApplicationError`](./src/models/errors/accountterminalapplicationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2369
|
-
* [`CreateTicketError`](./src/models/errors/createticketerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2370
|
-
* [`UpdateTicketError`](./src/models/errors/updateticketerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2371
|
-
* [`TransferOptionsValidationError`](./src/models/errors/transferoptionsvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2372
|
-
* [`TransferValidationError`](./src/models/errors/transfervalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2373
|
-
* [`ListTransfersValidationError`](./src/models/errors/listtransfersvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2374
|
-
* [`PatchTransferValidationError`](./src/models/errors/patchtransfervalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2375
|
-
* [`RefundValidationError`](./src/models/errors/refundvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2376
|
-
* [`ReversalValidationError`](./src/models/errors/reversalvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2377
|
-
* [`UpsertUnderwritingError`](./src/models/errors/upsertunderwritingerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2378
|
-
* [`UpdateUnderwritingError`](./src/models/errors/updateunderwritingerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2379
|
-
* [`CreateWalletValidationError`](./src/models/errors/createwalletvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2380
|
-
* [`ListWalletsValidationError`](./src/models/errors/listwalletsvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2381
|
-
* [`PatchWalletValidationError`](./src/models/errors/patchwalletvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2382
|
-
* [`ListWalletTransactionsValidationError`](./src/models/errors/listwallettransactionsvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2383
|
-
* [`RequestCardError`](./src/models/errors/requestcarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2384
|
-
* [`UpdateIssuedCardError`](./src/models/errors/updateissuedcarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2385
|
-
* [`RevokeTokenRequestError`](./src/models/errors/revoketokenrequesterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2386
|
-
* [`AuthTokenRequestError`](./src/models/errors/authtokenrequesterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2387
|
-
* [`OnboardingInviteError`](./src/models/errors/onboardinginviteerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of
|
|
2334
|
+
* [`GenericError`](./src/models/errors/genericerror.ts): Applicable to 74 of 167 methods.*
|
|
2335
|
+
* [`BrandValidationError`](./src/models/errors/brandvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 167 methods.*
|
|
2336
|
+
* [`ImageRequestValidationError`](./src/models/errors/imagerequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 167 methods.*
|
|
2337
|
+
* [`ProductRequestValidationError`](./src/models/errors/productrequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 167 methods.*
|
|
2338
|
+
* [`ScheduleValidationError`](./src/models/errors/schedulevalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 167 methods.*
|
|
2339
|
+
* [`TerminalApplicationError`](./src/models/errors/terminalapplicationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 167 methods.*
|
|
2340
|
+
* [`Transfer`](./src/models/errors/transfer.ts): Details of a Transfer. Status code `409`. Applicable to 1 of 167 methods.*
|
|
2341
|
+
* [`CardAcquiringRefund`](./src/models/errors/cardacquiringrefund.ts): Details of a card refund. Status code `409`. Applicable to 1 of 167 methods.*
|
|
2342
|
+
* [`CreateAccountError`](./src/models/errors/createaccounterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2343
|
+
* [`PatchAccountError`](./src/models/errors/patchaccounterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2344
|
+
* [`AssignCountriesError`](./src/models/errors/assigncountrieserror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2345
|
+
* [`LinkApplePayError`](./src/models/errors/linkapplepayerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2346
|
+
* [`BankAccountValidationError`](./src/models/errors/bankaccountvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2347
|
+
* [`MicroDepositValidationError`](./src/models/errors/microdepositvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2348
|
+
* [`AddCapabilitiesError`](./src/models/errors/addcapabilitieserror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2349
|
+
* [`LinkCardError`](./src/models/errors/linkcarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2350
|
+
* [`UpdateCardError`](./src/models/errors/updatecarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2351
|
+
* [`FileUploadValidationError`](./src/models/errors/fileuploadvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2352
|
+
* [`FeePlanAgreementError`](./src/models/errors/feeplanagreementerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2353
|
+
* [`FileValidationError`](./src/models/errors/filevalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2354
|
+
* [`ImageMetadataValidationError`](./src/models/errors/imagemetadatavalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2355
|
+
* [`CreateInvoiceError`](./src/models/errors/createinvoiceerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2356
|
+
* [`ListInvoicesValidationError`](./src/models/errors/listinvoicesvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2357
|
+
* [`UpdateInvoiceError`](./src/models/errors/updateinvoiceerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2358
|
+
* [`MarkInvoicePaidError`](./src/models/errors/markinvoicepaiderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2359
|
+
* [`CreatePaymentLinkError`](./src/models/errors/createpaymentlinkerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2360
|
+
* [`UpdatePaymentLinkError`](./src/models/errors/updatepaymentlinkerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2361
|
+
* [`RepresentativeValidationError`](./src/models/errors/representativevalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2362
|
+
* [`CreateSweepConfigError`](./src/models/errors/createsweepconfigerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2363
|
+
* [`PatchSweepConfigError`](./src/models/errors/patchsweepconfigerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2364
|
+
* [`AccountTerminalApplicationError`](./src/models/errors/accountterminalapplicationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2365
|
+
* [`CreateTicketError`](./src/models/errors/createticketerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2366
|
+
* [`UpdateTicketError`](./src/models/errors/updateticketerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2367
|
+
* [`TransferOptionsValidationError`](./src/models/errors/transferoptionsvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2368
|
+
* [`TransferValidationError`](./src/models/errors/transfervalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2369
|
+
* [`ListTransfersValidationError`](./src/models/errors/listtransfersvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2370
|
+
* [`PatchTransferValidationError`](./src/models/errors/patchtransfervalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2371
|
+
* [`RefundValidationError`](./src/models/errors/refundvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2372
|
+
* [`ReversalValidationError`](./src/models/errors/reversalvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2373
|
+
* [`UpsertUnderwritingError`](./src/models/errors/upsertunderwritingerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2374
|
+
* [`UpdateUnderwritingError`](./src/models/errors/updateunderwritingerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2375
|
+
* [`CreateWalletValidationError`](./src/models/errors/createwalletvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2376
|
+
* [`ListWalletsValidationError`](./src/models/errors/listwalletsvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2377
|
+
* [`PatchWalletValidationError`](./src/models/errors/patchwalletvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2378
|
+
* [`ListWalletTransactionsValidationError`](./src/models/errors/listwallettransactionsvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2379
|
+
* [`RequestCardError`](./src/models/errors/requestcarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2380
|
+
* [`UpdateIssuedCardError`](./src/models/errors/updateissuedcarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2381
|
+
* [`RevokeTokenRequestError`](./src/models/errors/revoketokenrequesterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2382
|
+
* [`AuthTokenRequestError`](./src/models/errors/authtokenrequesterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2383
|
+
* [`OnboardingInviteError`](./src/models/errors/onboardinginviteerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 167 methods.*
|
|
2388
2384
|
* [`ResponseValidationError`](./src/models/errors/responsevalidationerror.ts): Type mismatch between the data returned from the server and the structure expected by the SDK. See `error.rawValue` for the raw value and `error.pretty()` for a nicely formatted multi-line string.
|
|
2389
2385
|
|
|
2390
2386
|
</details>
|