3.2.1 • Published 9 months ago

zuora-sdk-js v3.2.1

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
-
Last release
9 months ago

zuora-sdk-js

ZuoraSdkJs - JavaScript client for zuora-sdk-js REST API reference for the Zuora Billing, Payments, and Central Platform! Check out the REST API Overview. This SDK is automatically generated by the OpenAPI Generator project:

  • API version: 2024-05-20
  • Package version: 3.2.1
  • Generator version: 7.6.0
  • Build package: org.openapitools.codegen.languages.JavascriptClientCodegen

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install zuora-sdk-js --save

Finally, you need to build the module:

npm run build
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

To use the link you just defined in your project, switch to the directory you want to use your zuora-sdk-js from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

Finally, you need to build the module:

npm run build

git

If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var ZuoraSdkJs = require('zuora-sdk-js');

var defaultClient = ZuoraSdkJs.ApiClient.instance;
// Configure Bearer access token for authorization: bearerAuth
var bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"

var api = new ZuoraSdkJs.APIHealthApi()
var start_time = new Date("2013-10-20T19:20:30+01:00"); // {Date} Start time of the volume summary.  Format: `yyyy-MM-dd'T'HH:mmZ` Example: `2022-09-22T09:07+0800`. 
var end_time = new Date("2013-10-20T19:20:30+01:00"); // {Date} End time of the volume summary.  Format: `yyyy-MM-dd'T'HH:mmZ` Example: `2022-09-29T09:07+0800`. 
var opts = {
  'accept_encoding': "accept_encoding_example", // {String} Include the `Accept-Encoding: gzip` header to compress responses as a gzipped file. It can significantly reduce the bandwidth required for a response.   If specified, Zuora automatically compresses responses that contain over 1000 bytes of data, and the response contains a `Content-Encoding` header with the compression algorithm so that your client can decompress it. 
  'content_encoding': "content_encoding_example", // {String} Include the `Content-Encoding: gzip` header to compress a request. With this header specified, you should upload a gzipped file for the request payload instead of sending the JSON payload. 
  'authorization': "authorization_example", // {String} The value is in the `Bearer {token}` format where {token} is a valid OAuth token generated by calling [Create an OAuth token](https://www.zuora.com/developer/api-references/api/operation/createToken). 
  'zuora_entity_ids': "zuora_entity_ids_example", // {String} An entity ID. If you have [Zuora Multi-entity](https://knowledgecenter.zuora.com/BB_Introducing_Z_Business/Multi-entity) enabled and the OAuth token is valid for more than one entity, you must use this header to specify which entity to perform the operation in. If the OAuth token is only valid for a single entity, or you do not have Zuora Multi-entity enabled, you do not need to set this header. 
  'zuora_track_id': "zuora_track_id_example", // {String} A custom identifier for tracing the API call. If you set a value for this header, Zuora returns the same value in the response headers. This header enables you to associate your system process identifiers with Zuora API calls, to assist with troubleshooting in the event of an issue.  The value of this field must use the US-ASCII character set and must not include any of the following characters: colon (`:`), semicolon (`;`), double quote (`\"`), and quote (`'`). 
  'path': "path_example", // {String} Filters the volume summary by API path name.  You can refer to the api listed in the [API System Health Dashboard](https://knowledgecenter.zuora.com/Zuora_Central_Platform/Zuora_System_Health/B_APIs_dashboard) for the path name. Example: `/v1/accounts/{account-key}`. 
  'http_method': "http_method_example", // {String} Filters the volume summary by http method. Example: `Post`. 
  'zuora_version': "'2024-05-20'", // {String} The minor version of the Zuora REST API.  
  'zuora_org_ids': "zuora_org_ids_example" // {String} Comma separated IDs. If you have Zuora Multi-Org enabled, you can use this header to specify which orgs to perform the operation in. If you do not have Zuora Multi-Org enabled, you should not set this header. The IDs must be a sub-set of the user's accessible orgs. If you specify an org that the user does not have access to, the operation fails. If the header is not set, the operation is performed in scope of the user's accessible orgs. 
};
api.getSystemHealthApiVolumeSummary(start_time, end_time, opts).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});

Documentation for API Endpoints

All URIs are relative to https://rest.zuora.com

ClassMethodHTTP requestDescription
ZuoraSdkJs.APIHealthApigetSystemHealthApiVolumeSummaryGET /system-health/api-requests/volume-summaryList API volume summary records
ZuoraSdkJs.AccountingCodesApiactivateAccountingCodePUT /v1/accounting-codes/{ac-id}/activateActivate an accounting code
ZuoraSdkJs.AccountingCodesApicreateAccountingCodePOST /v1/accounting-codesCreate an accounting code
ZuoraSdkJs.AccountingCodesApideactivateAccountingCodePUT /v1/accounting-codes/{ac-id}/deactivateDeactivate an accounting code
ZuoraSdkJs.AccountingCodesApideleteAccountingCodeDELETE /v1/accounting-codes/{ac-id}Delete an accounting code
ZuoraSdkJs.AccountingCodesApigetAccountingCodeGET /v1/accounting-codes/{ac-id}Retrieve an accounting code
ZuoraSdkJs.AccountingCodesApigetAllAccountingCodesGET /v1/accounting-codesList all accounting codes
ZuoraSdkJs.AccountingCodesApiupdateAccountingCodePUT /v1/accounting-codes/{ac-id}Update an accounting code
ZuoraSdkJs.AccountingPeriodsApicloseAccountingPeriodPUT /v1/accounting-periods/{ap-id}/closeClose an accounting period
ZuoraSdkJs.AccountingPeriodsApicreateAccountingPeriodPOST /v1/accounting-periodsCreate an accounting period
ZuoraSdkJs.AccountingPeriodsApideleteAccountingPeriodDELETE /v1/accounting-periods/{ap-id}Delete an accounting period
ZuoraSdkJs.AccountingPeriodsApigetAccountingPeriodGET /v1/accounting-periods/{ap-id}Retrieve an accounting period
ZuoraSdkJs.AccountingPeriodsApigetAllAccountingPeriodsGET /v1/accounting-periodsList all accounting periods
ZuoraSdkJs.AccountingPeriodsApipendingCloseAccountingPeriodPUT /v1/accounting-periods/{ap-id}/pending-closeSet an accounting period to pending close
ZuoraSdkJs.AccountingPeriodsApireopenAccountingPeriodPUT /v1/accounting-periods/{ap-id}/reopenReopen an accounting period
ZuoraSdkJs.AccountingPeriodsApirunTrialBalancePUT /v1/accounting-periods/{ap-id}/run-trial-balanceRun trial balance
ZuoraSdkJs.AccountingPeriodsApiupdateAccountingPeriodPUT /v1/accounting-periods/{ap-id}Update an accounting period
ZuoraSdkJs.AccountsApicreateAccountPOST /v1/accountsCreate an account
ZuoraSdkJs.AccountsApideleteAccountDELETE /v1/accounts/{account-key}Delete an account
ZuoraSdkJs.AccountsApigetAccountGET /v1/accounts/{account-key}Retrieve an account
ZuoraSdkJs.AccountsApigetAccountDefaultPaymentMethodGET /v1/accounts/{account-key}/payment-methods/defaultRetrieve the default payment method of an account
ZuoraSdkJs.AccountsApigetAccountPaymentMethodsGET /v1/accounts/{account-key}/payment-methodsList payment methods of an account
ZuoraSdkJs.AccountsApigetAccountSummaryGET /v1/accounts/{account-key}/summaryRetrieve an account summary
ZuoraSdkJs.AccountsApiupdateAccountPUT /v1/accounts/{account-key}Update an account
ZuoraSdkJs.ActionsApiactionPostCreatePOST /v1/action/createCreate
ZuoraSdkJs.ActionsApiactionPostDeletePOST /v1/action/deleteDelete
ZuoraSdkJs.ActionsApiactionPostQueryPOST /v1/action/queryQuery
ZuoraSdkJs.ActionsApiactionPostqueryMorePOST /v1/action/queryMoreQueryMore
ZuoraSdkJs.ActionsApiactionPostupdatePOST /v1/action/updateUpdate
ZuoraSdkJs.AdjustmentsApicancelBillingAdjustmentPUT /v1/adjustments/{adjustmentId}/cancelCancel an adjustment
ZuoraSdkJs.AdjustmentsApicreateBillingAdjustmentPOST /v1/adjustmentsCreate an adjustment
ZuoraSdkJs.AdjustmentsApigetBillingAdjustmentGET /v1/adjustments/{adjustment-key}Retrieve an adjustment
ZuoraSdkJs.AdjustmentsApigetSubscriptionAdjustmentsGET /v1/adjustmentsList all adjustments of the latest version subscription
ZuoraSdkJs.AdjustmentsApipreviewBillingAdjustmentPOST /v1/adjustments/previewPreview an adjustment
ZuoraSdkJs.AggregateQueriesApicreateBatchQueryPOST /v1/batch-query/Submit an aggregate query job
ZuoraSdkJs.AggregateQueriesApideleteBatchQueryJobDELETE /v1/batch-query/jobs/{jobid}Cancel a running aggregate query job
ZuoraSdkJs.AggregateQueriesApigetBatchQueryJobGET /v1/batch-query/jobs/{jobid}Retrieve an aggregate query job
ZuoraSdkJs.AttachmentsApideleteAttachmentsDELETE /v1/attachments/{attachment-id}Delete an attachment
ZuoraSdkJs.AttachmentsApigetAttachmentsGET /v1/attachments/{attachment-id}Retrieve an attachment
ZuoraSdkJs.AttachmentsApigetAttachmentsListGET /v1/attachments/{object-type}/{object-key}List attachments by object type and key
ZuoraSdkJs.AttachmentsApipostAttachmentsPOST /v1/attachmentsCreate an attachment
ZuoraSdkJs.AttachmentsApiputAttachmentsPUT /v1/attachments/{attachment-id}Update an attachment
ZuoraSdkJs.BillRunApicancelBillRunPUT /v1/bill-runs/{billRunId}/cancelCancel a bill run
ZuoraSdkJs.BillRunApicreateBillRunPOST /v1/bill-runsCreate a bill run
ZuoraSdkJs.BillRunApideleteBillRunDELETE /v1/bill-runs/{billRunId}Delete a bill run
ZuoraSdkJs.BillRunApiemailBillRunPOST /v1/bill-runs/{billRunKey}/emailsEmail billing documents generated from a bill run
ZuoraSdkJs.BillRunApigetBillRunGET /v1/bill-runs/{billRunId}Retrieve a bill run
ZuoraSdkJs.BillRunApipostBillRunPUT /v1/bill-runs/{billRunId}/postPost a bill run
ZuoraSdkJs.BillRunHealthApigetSystemHealthBillingDocVolumeSummaryGET /system-health/billing-documents/volume-summaryList billing document volume summary records
ZuoraSdkJs.BillingDocumentsApicreateBillingDocumentFilesDeletionJobPOST /v1/accounts/billing-documents/files/deletion-jobsCreate a job to hard delete billing document files
ZuoraSdkJs.BillingDocumentsApigenerateBillingDocumentsPOST /v1/accounts/{key}/billing-documents/generateGenerate billing documents by account ID
ZuoraSdkJs.BillingDocumentsApigetBillingDocumentFilesDeletionJobGET /v1/accounts/billing-documents/files/deletion-jobs/{jobId}Retrieve a job of hard deleting billing document files
ZuoraSdkJs.BillingDocumentsApigetBillingDocumentsGET /v1/billing-documentsList billing documents for an account
ZuoraSdkJs.BillingPreviewRunApicreateBillingPreviewRunPOST /v1/billing-preview-runsCreate a billing preview run
ZuoraSdkJs.BillingPreviewRunApigetBillingPreviewRunGET /v1/billing-preview-runs/{billingPreviewRunId}Retrieve a billing preview run
ZuoraSdkJs.BookingDateBackfillJobApigETBookingDateBackfillJobByIdGET /v1/uno/data-backfill/bookingdate/jobs/{jobId}Find BookingDate Backfill job by ID
ZuoraSdkJs.BookingDateBackfillJobApigETListBookingDateBackfillJobsGET /v1/uno/data-backfill/bookingdate/jobsQuery all Booking Date Backfill Jobs
ZuoraSdkJs.BookingDateBackfillJobApipOSTCreateBookingDateBackfillJobPOST /v1/uno/data-backfill/bookingdate/jobsCreate a new BookingDate Backfil job
ZuoraSdkJs.BookingDateBackfillJobApipUTStopBookingDateBackfillJobByIdPUT /v1/uno/data-backfill/bookingdate/jobs/{jobId}Stop BookingDate Backfill job by ID
ZuoraSdkJs.CatalogGroupsApicreateCatalogGroupPOST /v1/catalog-groupsCreate a catalog group
ZuoraSdkJs.CatalogGroupsApideleteCatalogGroupDELETE /v1/catalog-groups/{catalog-group-key}Delete a catalog group
ZuoraSdkJs.CatalogGroupsApigetCatalogGroupGET /v1/catalog-groups/{catalog-group-key}Retrieve a catalog group
ZuoraSdkJs.CatalogGroupsApigetCatalogGroupsGET /v1/catalog-groupsList all catalog groups
ZuoraSdkJs.CatalogGroupsApiupdateCatalogGroupPUT /v1/catalog-groups/{catalog-group-key}Update a catalog group
ZuoraSdkJs.ConfigurationTemplatesApideleteDeploymentTemplateDELETE /deployment-manager/deployment_templates/{id}Delete a template
ZuoraSdkJs.ConfigurationTemplatesApigetDeploymentTemplateDetailGET /deployment-manager/deployment_templates/{id}List all details of a template
ZuoraSdkJs.ConfigurationTemplatesApigetDownloadDeploymentTemplateGET /deployment-manager/deployment_artifactsDownload a template
ZuoraSdkJs.ConfigurationTemplatesApigetSourceComponentDetailsGET /deployment-manager/deployment_artifacts/retrieve-settingsList all details of source components
ZuoraSdkJs.ConfigurationTemplatesApigetTemplatesGET /deployment-manager/deployment_templatesList all templates
ZuoraSdkJs.ConfigurationTemplatesApipostCompareTemplatePOST /deployment-manager/deployment_artifacts/compareCompare settings between a source tenant and a target tenant
ZuoraSdkJs.ConfigurationTemplatesApipostDeploymentTemplatePOST /deployment-manager/deployment_templatesCreate a deployment template
ZuoraSdkJs.ConfigurationTemplatesApipostMigrateTenantSettingsPOST /deployment-manager/deployment_artifacts/deployMigrate settings from source tenant to target tenant
ZuoraSdkJs.ContactSnapshotsApigetContactSnapshotGET /v1/contact-snapshots/{contact-snapshot-id}Retrieve a contact snapshot
ZuoraSdkJs.ContactsApicreateContactPOST /v1/contactsCreate a contact
ZuoraSdkJs.ContactsApideleteContactDELETE /v1/contacts/{contactId}Delete a contact
ZuoraSdkJs.ContactsApigetContactGET /v1/contacts/{contactId}Retrieve a contact
ZuoraSdkJs.ContactsApiscrubContactPUT /v1/contacts/{contactId}/scrubScrub a contact
ZuoraSdkJs.ContactsApiupdateContactPUT /v1/contacts/{contactId}Update a contact
ZuoraSdkJs.CreditMemosApiapplyCreditMemoPUT /v1/creditmemos/{creditMemoKey}/applyApply a credit memo
ZuoraSdkJs.CreditMemosApibulkCreateCreditMemosPOST /v1/creditmemos/bulkCreate credit memos
ZuoraSdkJs.CreditMemosApibulkUpdateCreditMemosPUT /v1/creditmemos/bulkUpdate credit memos
ZuoraSdkJs.CreditMemosApicancelAsyncCreditMemoPUT /v1/creditmemos/{creditMemoKey}/cancel-asyncCancel a Credit Memo in async
ZuoraSdkJs.CreditMemosApicancelCreditMemoPUT /v1/creditmemos/{creditMemoKey}/cancelCancel a credit memo
ZuoraSdkJs.CreditMemosApicreateCreditMemoFromChargePOST /v1/creditmemosCreate a credit memo from a charge
ZuoraSdkJs.CreditMemosApicreateCreditMemoFromInvoicePOST /v1/invoices/{invoiceKey}/creditmemosCreate a credit memo from an invoice
ZuoraSdkJs.CreditMemosApicreateCreditMemoTaxationItemsPOST /v1/creditmemos/{creditMemoKey}/taxationitemsCreate taxation items for a credit memo
ZuoraSdkJs.CreditMemosApideleteCreditMemoDELETE /v1/creditmemos/{creditMemoKey}Delete a credit memo
ZuoraSdkJs.CreditMemosApiemailCreditMemoPOST /v1/creditmemos/{creditMemoKey}/emailsEmail a credit memo
ZuoraSdkJs.CreditMemosApigenerateCreditMemoPdfPOST /v1/creditmemos/{creditMemoKey}/pdfsGenerate a credit memo PDF file
ZuoraSdkJs.CreditMemosApigetCreditMemoGET /v1/creditmemos/{creditMemoKey}Retrieve a credit memo
ZuoraSdkJs.CreditMemosApigetCreditMemoItemGET /v1/creditmemos/{creditMemoKey}/items/{creditMemoItemId}Retrieve a credit memo item
ZuoraSdkJs.CreditMemosApigetCreditMemoItemPartGET /v1/creditmemos/{creditMemoKey}/parts/{partid}/itemparts/{itempartid}Retrieve a credit memo part item
ZuoraSdkJs.CreditMemosApigetCreditMemoItemPartsGET /v1/creditmemos/{creditMemoKey}/parts/{partid}/itempartsList all credit memo part items
ZuoraSdkJs.CreditMemosApigetCreditMemoItemsGET /v1/creditmemos/{creditMemoKey}/itemsList credit memo items
ZuoraSdkJs.CreditMemosApigetCreditMemoPartGET /v1/creditmemos/{creditMemoKey}/parts/{partid}Retrieve a credit memo part
ZuoraSdkJs.CreditMemosApigetCreditMemoPartsGET /v1/creditmemos/{creditMemoKey}/partsList all parts of a credit memo
ZuoraSdkJs.CreditMemosApigetCreditMemoPdfStatusGET /v1/creditmemos/pdf-statusRetrieve PDF status of credit memos in a batch.
ZuoraSdkJs.CreditMemosApigetCreditMemosGET /v1/creditmemosList credit memos
ZuoraSdkJs.CreditMemosApigetTaxationItemsOfCreditMemoItemGET /v1/creditmemos/{creditMemoKey}/items/{creditMemoItemId}/taxation-itemsList all taxation items of a credit memo item
ZuoraSdkJs.CreditMemosApipostAsyncCreditMemoPUT /v1/creditmemos/{creditMemoKey}/post-asyncPost a Credit Memo in async
ZuoraSdkJs.CreditMemosApipostCreditMemoPUT /v1/creditmemos/{creditMemoKey}/postPost a credit memo
ZuoraSdkJs.CreditMemosApirefundCreditMemoPOST /v1/creditmemos/{creditMemoKey}/refundsRefund a credit memo
ZuoraSdkJs.CreditMemosApireverseCreditMemoPUT /v1/creditmemos/{creditMemoKey}/reverseReverse a credit memo
ZuoraSdkJs.CreditMemosApiunapplyCreditMemoPUT /v1/creditmemos/{creditMemoKey}/unapplyUnapply a credit memo
ZuoraSdkJs.CreditMemosApiunpostCreditMemoPUT /v1/creditmemos/{creditMemoKey}/unpostUnpost a credit memo
ZuoraSdkJs.CreditMemosApiupdateCreditMemoPUT /v1/creditmemos/{creditMemoKey}Update a credit memo
ZuoraSdkJs.CreditMemosApiuploadFileForCreditMemoPOST /v1/creditmemos/{creditMemoKey}/filesUpload a file for a credit memo
ZuoraSdkJs.CreditMemosApiwriteOffCreditMemoPUT /v1/creditmemos/{creditMemoKey}/write-offWrite off a credit memo
ZuoraSdkJs.CustomEventTriggersApideleteEventTriggerDELETE /events/event-triggers/{id}Delete an event trigger
ZuoraSdkJs.CustomEventTriggersApigetEventTriggerGET /events/event-triggers/{id}Retrieve an event trigger
ZuoraSdkJs.CustomEventTriggersApigetEventTriggersGET /events/event-triggersList event triggers
ZuoraSdkJs.CustomEventTriggersApipostEventTriggerPOST /events/event-triggersCreate an event trigger
ZuoraSdkJs.CustomEventTriggersApiputEventTriggerPUT /events/event-triggers/{id}Update an event trigger
ZuoraSdkJs.CustomExchangeRatesApigetCustomExchangeRatesGET /v1/custom-exchange-rates/{currency}List custom exchange rates by currency
ZuoraSdkJs.CustomObjectDefinitionsApideleteCustomObjectDefinitionByTypeDELETE /objects/definitions/default/{object}Delete a custom object definition
ZuoraSdkJs.CustomObjectDefinitionsApigetAllCustomObjectDefinitionsInNamespaceGET /objects/definitions/defaultList custom object definitions
ZuoraSdkJs.CustomObjectDefinitionsApigetCustomObjectDefinitionByTypeGET /objects/definitions/default/{object}Retrieve a custom object definition
ZuoraSdkJs.CustomObjectDefinitionsApipostCustomObjectDefinitionsPOST /objects/definitions/defaultCreate custom object definitions
ZuoraSdkJs.CustomObjectDefinitionsApipostUpdateCustomObjectDefinitionPOST /objects/migrationsUpdate a custom object definition
ZuoraSdkJs.CustomObjectJobsApigetAllCustomObjectBulkJobsGET /objects/jobsList all custom object bulk jobs
ZuoraSdkJs.CustomObjectJobsApigetCustomObjectBulkJobGET /objects/jobs/{id}Retrieve a custom object bulk job
ZuoraSdkJs.CustomObjectJobsApigetCustomObjectBulkJobErrorsGET /objects/jobs/{id}/errorsList all errors for a custom object bulk job
ZuoraSdkJs.CustomObjectJobsApipATCHCustomObjectBulkJobPATCH /objects/jobs/{id}/cancelCancel a custom object bulk job
ZuoraSdkJs.CustomObjectJobsApipostCustomObjectBulkJobPOST /objects/jobsSubmit a custom object bulk job
ZuoraSdkJs.CustomObjectJobsApipostUploadFileForCustomObjectBulkJobPOST /objects/jobs/{id}/filesUpload a file for a custom object bulk job
ZuoraSdkJs.CustomObjectRecordsApideleteCustomObjectRecordByIDDELETE /objects/records/default/{object}/{id}Delete a custom object record
ZuoraSdkJs.CustomObjectRecordsApigetAllRecordsForCustomObjectTypeGET /objects/records/default/{object}List records for a custom object
ZuoraSdkJs.CustomObjectRecordsApigetCustomObjectRecordByIDGET /objects/records/default/{object}/{id}Retrieve a custom object record
ZuoraSdkJs.CustomObjectRecordsApipatchPartialUpdateCustomObjectRecordPATCH /objects/records/default/{object}/{id}Partially update a custom object record
ZuoraSdkJs.CustomObjectRecordsApipostCustomObjectRecordsPOST /objects/records/default/{object}Create custom object records
ZuoraSdkJs.CustomObjectRecordsApipostCustomObjectRecordsBatchUpdateOrDeletePOST /objects/batch/default/{object}Update or delete custom object records
ZuoraSdkJs.CustomObjectRecordsApiputCustomObjectRecordPUT /objects/records/default/{object}/{id}Update a custom object record
ZuoraSdkJs.CustomPaymentMethodTypesApicreateOpenPaymentMethodTypePOST /open-payment-method-typesCreate a draft custom payment method type
ZuoraSdkJs.CustomPaymentMethodTypesApigetOpenPaymentMethodTypeRevisionGET /open-payment-method-types/{paymentMethodTypeName}/draft/{revisionNumber}Retrieve a specific draft revision of a custom payment method type
ZuoraSdkJs.CustomPaymentMethodTypesApigetPublishedOpenPaymentMethodTypeGET /open-payment-method-types/{paymentMethodTypeName}/publishedRetrieve a published custom payment method type
ZuoraSdkJs.CustomPaymentMethodTypesApipublishOpenPaymentMethodTypePUT /open-payment-method-types/publish/{paymentMethodTypeName}Publish a custom payment method type
ZuoraSdkJs.CustomPaymentMethodTypesApiupdateOpenPaymentMethodTypePUT /open-payment-method-types/{paymentMethodTypeName}Update a custom payment method type
ZuoraSdkJs.CustomScheduledEventsApideleteScheduledEventByIDDELETE /events/scheduled-events/{id}Delete a scheduled event by ID
ZuoraSdkJs.CustomScheduledEventsApigetScheduledEventByIDGET /events/scheduled-events/{id}Retrieve a scheduled event by ID
ZuoraSdkJs.CustomScheduledEventsApigetScheduledEventsGET /events/scheduled-eventsList all scheduled events
ZuoraSdkJs.CustomScheduledEventsApipostScheduledEventPOST /events/scheduled-eventsCreate a scheduled event
ZuoraSdkJs.CustomScheduledEventsApiupdateScheduledEventByIDPUT /events/scheduled-events/{id}Update a scheduled event by ID
ZuoraSdkJs.DataBackfillJobApigETDataBackfillJobByIdGET /v1/uno/data-backfill/jobs/{jobId}Find Data Backfill job by ID
ZuoraSdkJs.DataBackfillJobApigETDataBackfillTemplateGET /v1/uno/data-backfill/jobs/{type}/templateDownload a Data Backfill template file
ZuoraSdkJs.DataBackfillJobApigETListDataBackfillJobsGET /v1/uno/date-backfill/listjobsQuery all data backfill jobs
ZuoraSdkJs.DataBackfillJobApipOSTCreateDataBackfillJobPOST /v1/uno/data-backfill/jobsCreate a new Data Backfil job
ZuoraSdkJs.DataBackfillJobApipUTStopDataBackfillJobByIdPUT /v1/uno/data-backfill/jobs/{jobId}Stop Data Backfill job by ID
ZuoraSdkJs.DataQueriesApideleteDataQueryJobDELETE /query/jobs/{job-id}Cancel a data query job
ZuoraSdkJs.DataQueriesApigetDataQueryJobGET /query/jobs/{job-id}Retrieve a data query job
ZuoraSdkJs.DataQueriesApigetDataQueryJobsGET /query/jobsList data query jobs
ZuoraSdkJs.DataQueriesApipostDataQueryJobPOST /query/jobsSubmit a data query
ZuoraSdkJs.DebitMemosApibulkCreateDebitMemosPOST /v1/debitmemos/bulkCreate debit memos
ZuoraSdkJs.DebitMemosApibulkUpdateDebitMemosPUT /v1/debitmemos/bulkUpdate debit memos
ZuoraSdkJs.DebitMemosApicancelAsyncDebitMemoPUT /v1/debitmemos/{debitMemoKey}/cancel-asyncCancel a Debit Memo in async
ZuoraSdkJs.DebitMemosApicancelDebitMemoPUT /v1/debitmemos/{debitMemoKey}/cancelCancel a debit memo
ZuoraSdkJs.DebitMemosApicollectDebitMemoPOST /v1/debitmemos/{debitMemoKey}/collectCollect a posted debit memo
ZuoraSdkJs.DebitMemosApicreateDebitMemoFromChargePOST /v1/debitmemosCreate a debit memo from a charge
ZuoraSdkJs.DebitMemosApicreateDebitMemoFromInvoicePOST /v1/invoices/{invoiceKey}/debitmemosCreate a debit memo from an invoice
ZuoraSdkJs.DebitMemosApicreateTaxationItemsForDebitMemoPOST /v1/debitmemos/{debitMemoKey}/taxationitemsCreate taxation items for a debit memo
ZuoraSdkJs.DebitMemosApideleteDebitMemoDELETE /v1/debitmemos/{debitMemoKey}Delete a debit memo
ZuoraSdkJs.DebitMemosApiemailDebitMemoPOST /v1/debitmemos/{debitMemoKey}/emailsEmail a debit memo
ZuoraSdkJs.DebitMemosApigenerateDebitMemoPdfPOST /v1/debitmemos/{debitMemoKey}/pdfsGenerate a debit memo PDF file
ZuoraSdkJs.DebitMemosApigetDebitMemoGET /v1/debitmemos/{debitMemoKey}Retrieve a debit memo
ZuoraSdkJs.DebitMemosApigetDebitMemoApplicationPartsGET /v1/debitmemos/{debitMemoKey}/application-partsList all application parts of a debit memo
ZuoraSdkJs.DebitMemosApigetDebitMemoItemGET /v1/debitmemos/{debitMemoKey}/items/{debitMemoItemId}Retrieve a debit memo item
ZuoraSdkJs.DebitMemosApigetDebitMemoItemsGET /v1/debitmemos/{debitMemoKey}/itemsList debit memo items
ZuoraSdkJs.DebitMemosApigetDebitMemoPdfStatusGET /v1/debitmemos/pdf-statusRetrieve PDF status of debit memos in a batch.
ZuoraSdkJs.DebitMemosApigetDebitMemosGET /v1/debitmemosList debit memos
ZuoraSdkJs.DebitMemosApigetTaxationItemsOfDebitMemoItemGET /v1/debitmemos/{debitMemoKey}/items/{debitMemoItemId}/taxation-itemsList all taxation items of a debit memo item
ZuoraSdkJs.DebitMemosApipostAsyncDebitMemoPUT /v1/debitmemos/{debitMemoKey}/post-asyncPost a Debit Memo in async
ZuoraSdkJs.DebitMemosApipostDebitMemoPUT /v1/debitmemos/{debitMemoKey}/postPost a debit memo
ZuoraSdkJs.DebitMemosApiunpostDebitMemoPUT /v1/debitmemos/{debitMemoKey}/unpostUnpost a debit memo
ZuoraSdkJs.DebitMemosApiupdateDebitMemoPUT /v1/debitmemos/{debitMemoKey}Update a debit memo
ZuoraSdkJs.DebitMemosApiupdateDebitMemosDueDatesPUT /v1/debitmemosUpdate due dates for debit memos
ZuoraSdkJs.DebitMemosApiuploadFileForDebitMemoPOST /v1/debitmemos/{debitMemoKey}/filesUpload a file for a debit memo
ZuoraSdkJs.DebitMemosApiwriteOffDebitMemoPUT /v1/debitmemos/{debitMemoKey}/write-offWrite off an debit memo
ZuoraSdkJs.DescribeApigetDescribeGET /v1/describe/{object}Describe an object
ZuoraSdkJs.EInvoicingApideleteBusinessRegionDELETE /v1/e-invoice/business-regions/{key}Delete a Business Region
ZuoraSdkJs.EInvoicingApideleteServiceProviderDELETE /v1/e-invoice/service-providers/{key}Delete a Service Provider
ZuoraSdkJs.EInvoicingApigetBusinessRegionGET /v1/e-invoice/business-regions/{key}Retrieve a Business Region
ZuoraSdkJs.EInvoicingApigetBusinessRegionsGET /v1/e-invoice/business-regionsList business region
ZuoraSdkJs.EInvoicingApigetServiceProviderGET /v1/e-invoice/service-providers/{key}Retrieve a Service Provider
ZuoraSdkJs.EInvoicingApigetServiceProvidersGET /v1/e-invoice/service-providersList Service Provider
ZuoraSdkJs.EInvoicingApipostBusinessRegionPOST /v1/e-invoice/business-regionsPost a Business Region
ZuoraSdkJs.EInvoicingApipostServiceProviderPOST /v1/e-invoice/service-providersPost a Service Provider
ZuoraSdkJs.EInvoicingApiupdateBusinessRegionPUT /v1/e-invoice/business-regions/{key}Update a Business Region
ZuoraSdkJs.EInvoicingApiupdateServiceProviderPUT /v1/e-invoice/service-providers/{key}Update a Service Provider
ZuoraSdkJs.ElectronicPaymentsHealthApigetSystemHealthPaymentVolumeSummaryGET /system-health/payments/volume-summaryList payment volume summary records
ZuoraSdkJs.FilesApigetFilesGET /v1/files/{file-id}Retrieve a file
ZuoraSdkJs.FulfillmentsApicreateFulfillmentPOST /v1/fulfillmentsCreate fulfillments
ZuoraSdkJs.FulfillmentsApicreateFulfillmentItemPOST /v1/fulfillment-itemsCreate fulfillment items
ZuoraSdkJs.FulfillmentsApideleteFulfillmentDELETE /v1/fulfillments/{key}Delete a fulfillment
ZuoraSdkJs.FulfillmentsApideleteFulfillmentItemDELETE /v1/fulfillment-items/{id}Delete a fulfillment item
ZuoraSdkJs.FulfillmentsApigetFulfillmentGET /v1/fulfillments/{key}Retrieve a fulfillment
ZuoraSdkJs.FulfillmentsApigetFulfillmentItemGET /v1/fulfillment-items/{id}Retrieve a fulfillment item
ZuoraSdkJs.FulfillmentsApiupdateFulfillmentPUT /v1/fulfillments/{key}Update a fulfillment
ZuoraSdkJs.FulfillmentsApiupdateFulfillmentItemPUT /v1/fulfillment-items/{id}Update a fulfillment item
ZuoraSdkJs.HostedPagesApigetHostedPagesGET /v1/hostedpagesList hosted pages
ZuoraSdkJs.ImportsApiobjectGetImportGET /v1/object/import/{id}CRUD: Retrieve an import
ZuoraSdkJs.ImportsApiobjectPostImportPOST /v1/object/importCRUD: Create an import
ZuoraSdkJs.InvoiceSchedulesApicreateInvoiceSchedulePOST /v1/invoice-schedulesCreate an invoice schedule
ZuoraSdkJs.InvoiceSchedulesApideleteInvoiceScheduleDELETE /v1/invoice-schedules/{scheduleKey}Delete an invoice schedule
ZuoraSdkJs.InvoiceSchedulesApiexecuteInvoiceSchedulePOST /v1/invoice-schedules/{scheduleKey}/executeExecute an invoice schedule
ZuoraSdkJs.InvoiceSchedulesApigetInvoiceScheduleGET /v1/invoice-schedules/{scheduleKey}Retrieve an invoice schedule
ZuoraSdkJs.InvoiceSchedulesApipauseInvoiceSchedulePUT /v1/invoice-schedules/{scheduleKey}/pausePause an invoice schedule
ZuoraSdkJs.InvoiceSchedulesApiresumeInvoiceSchedulePUT /v1/invoice-schedules/{scheduleKey}/resumeResume an invoice schedule
ZuoraSdkJs.InvoiceSchedulesApiupdateInvoiceSchedulePUT /v1/invoice-schedules/{scheduleKey}Update an invoice schedule
ZuoraSdkJs.InvoicesApibulkCreateStandaloneInvoicesPOST /v1/invoices/batchCreate standalone invoices
ZuoraSdkJs.InvoicesApibulkPostInvoicesPOST /v1/invoices/bulk-postPost invoices
ZuoraSdkJs.InvoicesApibulkUpdateInvoicesPUT /v1/invoicesUpdate invoices
ZuoraSdkJs.InvoicesApicancelInvoicePUT /v1/invoices/{invoiceKey}/cancelCancel an invoice
ZuoraSdkJs.InvoicesApicreateInvoiceTaxationItemsPOST /v1/invoices/{invoiceKey}/taxationitemsCreate taxation items for an invoice
ZuoraSdkJs.InvoicesApicreateStandaloneInvoicePOST /v1/invoicesCreate a standalone invoice
ZuoraSdkJs.InvoicesApideleteInvoiceDELETE /v1/invoices/{invoiceKey}Delete an invoice
ZuoraSdkJs.InvoicesApiemailInvoicePOST /v1/invoices/{invoiceKey}/emailsEmail an invoice
ZuoraSdkJs.InvoicesApigetInvoiceGET /v1/invoices/{invoiceKey}Retrieve an invoice
ZuoraSdkJs.InvoicesApigetInvoiceApplicationPartsGET /v1/invoices/{invoiceKey}/application-partsList all application parts of an invoice
ZuoraSdkJs.InvoicesApigetInvoiceFilesGET /v1/invoices/{invoiceKey}/filesList all files of an invoice
ZuoraSdkJs.InvoicesApigetInvoiceItemsGET /v1/invoices/{invoiceKey}/itemsList all items of an invoice
ZuoraSdkJs.InvoicesApigetInvoicePdfStatusGET /v1/invoices/pdf-statusRetrieve PDF status of invoices in a batch.
ZuoraSdkJs.InvoicesApigetTaxationItemsOfInvoiceItemGET /v1/invoices/{invoiceKey}/items/{itemId}/taxation-itemsList all taxation items of an invoice item
ZuoraSdkJs.InvoicesApipostInvoicePUT /v1/invoices/{invoiceKey}/postCancel an invoice
ZuoraSdkJs.InvoicesApireverseInvoicePUT /v1/invoices/{invoiceKey}/reverseReverse an invoice
ZuoraSdkJs.InvoicesApiupdateInvoicePUT /v1/invoices/{invoiceKey}Update an invoice
ZuoraSdkJs.InvoicesApiuploadFileForInvoicePOST /v1/invoices/{invoiceKey}/filesUpload a file for an invoice
ZuoraSdkJs.InvoicesApiwriteOffInvoicePUT /v1/invoices/{invoiceKey}/write-offWrite off an invoice
ZuoraSdkJs.JournalRunsApicancelJournalRunPUT /v1/journal-runs/{jr-number}/cancelCancel a journal run
ZuoraSdkJs.JournalRunsApicreateJournalRunPOST /v1/journal-runsCreate a journal run
ZuoraSdkJs.JournalRunsApideleteJournalRunDELETE /v1/journal-runs/{jr-number}Delete a journal run
ZuoraSdkJs.JournalRunsApigetJournalRunGET /v1/journal-runs/{jr-number}Retrieve a journal run
ZuoraSdkJs.MassUpdaterApicreateMassUpdaterPOST /v1/bulkPerform a mass action
ZuoraSdkJs.MassUpdaterApigetMassUpdaterGET /v1/bulk/{bulk-key}List all results of a mass action
ZuoraSdkJs.MassUpdaterApistopMassUpdaterPUT /v1/bulk/{bulk-key}/stopStop a mass action
ZuoraSdkJs.NotificationsApicreateNotificationDefinitionPOST /notifications/notification-definitionsCreate a notification definition
ZuoraSdkJs.NotificationsApicreateOrUpdateEmailTemplatesPOST /notifications/email-templates/importCreate or update email templates
ZuoraSdkJs.NotificationsApideleteEmailTemplateDELETE /notifications/email-templates/{id}Delete an email template
ZuoraSdkJs.NotificationsApideleteNotificationDefinitionDELETE /notifications/notification-definitions/{id}Delete a notification definition
ZuoraSdkJs.NotificationsApideleteNotificationHistoryForAccountDELETE /notifications/historyDelete notification histories for an account
ZuoraSdkJs.NotificationsApigetCalloutHistoryGET /v1/notification-history/calloutList callout notification histories
ZuoraSdkJs.NotificationsApigetEmailHistoryGET /v1/notification-history/emailList email notification histories
ZuoraSdkJs.NotificationsApigetEmailTemplateGET /notifications/email-templates/{id}Retrieve an email template
ZuoraSdkJs.NotificationsApigetNotificationDefinitionGET /notifications/notification-definitions/{id}Retrieve a notification definition
ZuoraSdkJs.NotificationsApigetNotificationHistoryDeletionTaskGET /notifications/history/tasks/{id}Retrieve a notification history deletion task
ZuoraSdkJs.NotificationsApipostCreateEmailTemplatePOST /notifications/email-templatesCreate an email template
ZuoraSdkJs.NotificationsApiqueryEmailTemplatesGET /notifications/email-templatesList email templates
ZuoraSdkJs.NotificationsApiqueryNotificationDefinitionsGET /notifications/notification-definitionsList notification definitions
ZuoraSdkJs.NotificationsApiresendCalloutNotificationsPOST /notifications/callout-histories/resendResend callout notifications
ZuoraSdkJs.NotificationsApiresendEmailNotificationsPOST /notifications/email-histories/resendResend email notifications
ZuoraSdkJs.NotificationsApiupdateEmailTemplatePUT /notifications/email-templates/{id}Update an email template
ZuoraSdkJs.NotificationsApiupdateNotificationDefinitionPUT /notifications/notification-definitions/{id}Update a notification definition
ZuoraSdkJs.OAuthApicreateTokenPOST /oauth/tokenCreate an OAuth token
ZuoraSdkJs.ObjectQueriesApiqueryAccountByKeyGET /object-query/accounts/{key}
ZuoraSdkJs.ObjectQueriesApiqueryAccountsGET /object-query/accounts
ZuoraSdkJs.ObjectQueriesApiqueryAmendmentByKeyGET /object-query/amendments/{key}
ZuoraSdkJs.ObjectQueriesApiqueryAmendmentsGET /object-query/amendments
ZuoraSdkJs.ObjectQueriesApiqueryBillingRunByKeyGET /object-query/billing-runs/{key}
ZuoraSdkJs.ObjectQueriesApiqueryBillingRunsGET /object-query/billing-runs
ZuoraSdkJs.ObjectQueriesApiqueryContactByKeyGET /object-query/contacts/{key}
ZuoraSdkJs.ObjectQueriesApiqueryContactsGET /object-query/contacts
ZuoraSdkJs.ObjectQueriesApiqueryCreditMemoApplicationByKeyGET /object-query/credit-memo-applications/{key}
ZuoraSdkJs.ObjectQueriesApiqueryCreditMemoApplicationsGET /object-query/credit-memo-applications
ZuoraSdkJs.ObjectQueriesApiqueryCreditMemoByKeyGET /object-query/credit-memos/{key}
ZuoraSdkJs.ObjectQueriesApiqueryCreditMemoItemByKeyGET /object-query/credit-memo-items/{key}
ZuoraSdkJs.ObjectQueriesApiqueryCreditMemoItemsGET /object-query/credit-memo-items
ZuoraSdkJs.ObjectQueriesApiqueryCreditMemosGET /object-query/credit-memos
ZuoraSdkJs.ObjectQueriesApiqueryCustomObjectBykeyGET /object-query/{custom-object-name}/{key}
ZuoraSdkJs.ObjectQueriesApiqueryCustomObjectsGET /object-query/{custom-object-name}
ZuoraSdkJs.ObjectQueriesApiqueryDailyConsumptionSummaryByKeyGET /object-query/daily-consumption-summaries/{key}
ZuoraSdkJs.ObjectQueriesApiqueryDailyConsumptionSummarysGET /object-query/daily-consumption-summaries
ZuoraSdkJs.ObjectQueriesApiqueryDebitMemoByKeyGET /object-query/debit-memos/{key}
ZuoraSdkJs.ObjectQueriesApiqueryDebitMemoItemByKeyGET /object-query/debit-memo-items/{key}
ZuoraSdkJs.ObjectQueriesApiqueryDebitMemoItemsGET /object-query/debit-memo-items
ZuoraSdkJs.ObjectQueriesApiqueryDebitMemosGET /object-query/debit-memos
ZuoraSdkJs.ObjectQueriesApiqueryInvoiceByKeyGET /object-query/invoices/{key}
ZuoraSdkJs.ObjectQueriesApiqueryInvoiceItemByKeyGET /object-query/invoice-items/{key}
ZuoraSdkJs.ObjectQueriesApiqueryInvoiceItemsGET /object-query/invoice-items
ZuoraSdkJs.ObjectQueriesApiqueryInvoicesGET /object-query/invoices
ZuoraSdkJs.ObjectQueriesApiqueryOrderActionByKeyGET /object-query/order-actions/{key}
ZuoraSdkJs.ObjectQueriesApiqueryOrderActionsGET /object-query/order-actions
ZuoraSdkJs.ObjectQueriesApiqueryOrderLineItemByKeyGET /object-query/order-line-items/{key}
ZuoraSdkJs.ObjectQueriesApiqueryOrderLineItemsGET /object-query/order-line-items
ZuoraSdkJs.ObjectQueriesApiqueryOrdersByKeyGET /object-query/orders/{key}
ZuoraSdkJs.ObjectQueriesApiqueryOrderssGET /object-query/orders
ZuoraSdkJs.ObjectQueriesApiqueryPaymentApplicationByKeyGET /object-query/payment-applications/{key}
ZuoraSdkJs.ObjectQueriesApiqueryPaymentApplicationsGET /object-query/payment-applications
ZuoraSdkJs.ObjectQueriesApiqueryPaymentByKeyGET /object-query/payments/{key}
ZuoraSdkJs.ObjectQueriesApiqueryPaymentMethodByKeyGET /object-query/payment-methods/{key}
ZuoraSdkJs.ObjectQueriesApiqueryPaymentMethodSnapshotByKeyGET /object-query/payment-method-snapshots/{key}
ZuoraSdkJs.ObjectQueriesApiqueryPaymentMethodSnapshotsGET /object-query/payment-method-snapshots
ZuoraSdkJs.ObjectQueriesApiqueryPaymentMethodsGET /object-query/payment-methods
ZuoraSdkJs.ObjectQueriesApiqueryPaymentRunByKeyGET /object-query/payment-runs/{key}
ZuoraSdkJs.ObjectQueriesApiqueryPaymentRunsGET /object-query/payment-runs
ZuoraSdkJs.ObjectQueriesApiqueryPaymentScheduleByKeyGET /object-query/payment-schedules/{key}
ZuoraSdkJs.ObjectQueriesApiqueryPaymentScheduleItemByKeyGET /object-query/payment-schedule-items/{key}
ZuoraSdkJs.ObjectQueriesApiqueryPaymentScheduleItemsGET /object-query/payment-schedule-items
ZuoraSdkJs.ObjectQueriesApiqueryPaymentSchedulesGET /object-query/payment-schedules
ZuoraSdkJs.ObjectQueriesApiqueryPaymentsGET /object-query/payments
ZuoraSdkJs.ObjectQueriesApiqueryPrepaidBalanceByKeyGET /object-query/prepaid-balances/{key}
ZuoraSdkJs.ObjectQueriesApiqueryPrepaidBalanceFundByKeyGET /object-query/prepaid-balance-funds/{key}
ZuoraSdkJs.ObjectQueriesApiqueryPrepaidBalanceFundsGET /object-query/prepaid-balance-funds
ZuoraSdkJs.ObjectQueriesApiqueryPrepaidBalanceTransactionByKeyGET /object-query/prepaid-balance-transactions/{key}
ZuoraSdkJs.ObjectQueriesApiqueryPrepaidBalanceTransactionsGET /object-query/prepaid-balance-transactions
ZuoraSdkJs.ObjectQueriesApiqueryPrepaidBalancesGET /object-query/prepaid-balances
ZuoraSdkJs.ObjectQueriesApiqueryProcessedUsageByKeyGET /object-query/processed-usages/{key}
ZuoraSdkJs.ObjectQueriesApiqueryProcessedUsagesGET /object-query/processed-usages
ZuoraSdkJs.ObjectQueriesApiqueryProductByKeyGET /object-query/products/{key}
ZuoraSdkJs.ObjectQueriesApiqueryProductRatePlanByKeyGET /object-query/product-rate-plans/{key}
ZuoraSdkJs.ObjectQueriesApiqueryProductRatePlanChargeByKeyGET /object-query/product-rate-plan-charges/{key}
ZuoraSdkJs.ObjectQueriesApiqueryProductRatePlanChargeTierByKeyGET /object-query/product-rate-plan-charge-tiers/{key}
ZuoraSdkJs.ObjectQueriesApiqueryProductRatePlanChargeTiersGET /object-query/product-rate-plan-charge-tiers
ZuoraSdkJs.ObjectQueriesApiqueryProductRatePlanChargesGET /object-query/product-rate-plan-charges
ZuoraSdkJs.ObjectQueriesApiqueryProductRatePlansGET /object-query/product-rate-plans
ZuoraSdkJs.ObjectQueriesApiqueryProductsGET /object-query/products
ZuoraSdkJs.ObjectQueriesApiqueryRatePlanByKeyGET /object-query/rate-plans/{key}
ZuoraSdkJs.ObjectQueriesApiqueryRatePlanChargeByKeyGET /object-query/rate-plan-charges/{key}
ZuoraSdkJs.ObjectQueriesApiqueryRatePlanChargeTierByKeyGET /object-query/rate-plan-charge-tiers/{key}
ZuoraSdkJs.ObjectQueriesApiqueryRatePlanChargeTiersGET /object-query/rate-plan-charge-tiers
ZuoraSdkJs.ObjectQueriesApiqueryRatePlanChargesGET /object-query/rate-plan-charges
ZuoraSdkJs.ObjectQueriesApiqueryRatePlansGET /object-query/rate-plans
ZuoraSdkJs.ObjectQueriesApiqueryRatingResultByKeyGET /object-query/rating-results/{key}
ZuoraSdkJs.ObjectQueriesApiqueryRatingResultsGET /object-query/rating-results
ZuoraSdkJs.ObjectQueriesApiqueryRefundApplicationByKeyGET /object-query/refund-applications/{key}
ZuoraSdkJs.ObjectQueriesApiqueryRefundApplicationItemByKeyGET /object-query/refund-application-items/{key}
ZuoraSdkJs.ObjectQueriesApiqueryRefundApplicationItemsGET /object-query/refund-application-items
ZuoraSdkJs.ObjectQueriesApiqueryRefundApplicationsGET /object-query/refund-applications
ZuoraSdkJs.ObjectQueriesApiqueryRefundByKeyGET /object-query/refunds/{key}
ZuoraSdkJs.ObjectQueriesApiqueryRefundsGET /object-query/refunds
ZuoraSdkJs.ObjectQueriesApiquerySubscriptionByKeyGET /object-query/subscriptions/{key}
ZuoraSdkJs.ObjectQueriesApiquerySubscriptionsGET /object-query/subscriptions
ZuoraSdkJs.ObjectQueriesApiquerySummaryStatementByKeyGET /object-query/summarystatements/{key}
ZuoraSdkJs.ObjectQueriesApiquerySummaryStatementRunByKeyGET /object-query/summarystatementruns/{key}
ZuoraSdkJs.ObjectQueriesApiquerySummaryStatementRunsGET /object-query/summarystatementruns
ZuoraSdkJs.ObjectQueriesApiquerySummaryStatementsGET /object-query/summarystatements
ZuoraSdkJs.ObjectQueriesApiqueryTaxationItemByKeyGET /object-query/taxation-items/{key}
ZuoraSdkJs.ObjectQueriesApiqueryTaxationItemsGET /object-query/taxation-items
ZuoraSdkJs.ObjectQueriesApiqueryUsageByKeyGET /object-query/usages/{key}
ZuoraSdkJs.ObjectQueriesApiqueryUsagesGET /object-query/usages
ZuoraSdkJs.ObjectQueriesApiqueryValidityPeriodSummaryByKeyGET /object-query/validity-period-summaries/{key}
ZuoraSdkJs.ObjectQueriesApiqueryValidityPeriodSummarys(docs/ObjectQueriesA
3.2.1

9 months ago

3.2.0

9 months ago

3.2.0-beta.2

9 months ago

3.2.0-beta.0

10 months ago

3.2.0-beta.1

10 months ago

1.1.35-4.1

1 year ago

3.0.0

11 months ago

1.1.35-4.1a0

1 year ago