Zuora Connector for CData Sync

Build 24.0.9175
  • Zuora
    • Establishing a Connection
      • Creating a Custom OAuth Application
    • Advanced Features
      • SSL Configuration
      • Firewall and Proxy
    • Data Model
      • Views
        • Account
        • AccountingCode
        • AccountingPeriod
        • Amendment
        • ApplicationGroup
        • Attachment
        • BillingRun
        • ChargeMetrics
        • Contact
        • ContactSnapshot
        • CreditBalanceAdjustment
        • CreditMemo
        • CreditMemoApplication
        • CreditMemoApplicationItem
        • CreditMemoItem
        • CreditMemoPart
        • CreditMemoPartItem
        • CreditTaxationItem
        • DebitMemo
        • DebitMemoItem
        • DebitTaxationItem
        • DiscountAppliedMetrics
        • DiscountApplyDetail
        • Feature
        • FXCustomRate
        • Invoice
        • InvoiceAdjustment
        • InvoiceItem
        • InvoiceItemAdjustment
        • InvoicePayment
        • JournalEntry
        • JournalEntryItem
        • JournalRun
        • OrderAction
        • OrderElp
        • OrderItem
        • OrderMrr
        • OrderQuantity
        • Orders
        • OrderTcb
        • OrderTcv
        • Payment
        • PaymentApplication
        • PaymentApplicationItem
        • PaymentGatewayReconciliationEventLog
        • PaymentMethod
        • PaymentMethodSnapshot
        • PaymentMethodTransactionLog
        • PaymentPart
        • PaymentPartItem
        • PaymentReconciliationJob
        • PaymentReconciliationLog
        • PaymentRun
        • PaymentTransactionLog
        • ProcessedUsage
        • Product
        • ProductFeature
        • ProductRatePlan
        • ProductRatePlanCharge
        • ProductRatePlanChargeTier
        • RatePlan
        • RatePlanCharge
        • RatePlanChargeTier
        • Refund
        • RefundApplication
        • RefundApplicationItem
        • RefundInvoicePayment
        • RefundPart
        • RefundPartItem
        • RefundTransactionLog
        • RevenueChargeSummary
        • RevenueChargeSummaryItem
        • RevenueEvent
        • RevenueEventCreditMemoItem
        • RevenueEventDebitMemoItem
        • RevenueEventInvoiceItem
        • RevenueEventInvoiceItemAdjustment
        • RevenueEventItem
        • RevenueEventItemCreditMemoItem
        • RevenueEventItemDebitMemoItem
        • RevenueEventItemInvoiceItem
        • RevenueEventItemInvoiceItemAdjustment
        • RevenueEventType
        • RevenueSchedule
        • RevenueScheduleCreditMemoItem
        • RevenueScheduleDebitMemoItem
        • RevenueScheduleInvoiceItem
        • RevenueScheduleInvoiceItemAdjustment
        • RevenueScheduleItem
        • RevenueScheduleItemCreditMemoItem
        • RevenueScheduleItemInvoiceItem
        • RevenueScheduleItemInvoiceItemAdjustment
        • Subscription
        • SubscriptionProductFeature
        • TaxationItem
        • UpdaterBatch
        • UpdaterDetail
        • Usage
        • User
    • Connection String Options
      • Authentication
        • Tenant
        • URL
      • Connection
        • ZuoraService
      • OAuth
        • OAuthClientId
        • OAuthClientSecret
      • SSL
        • SSLServerCert
      • Firewall
        • FirewallType
        • FirewallServer
        • FirewallPort
        • FirewallUser
        • FirewallPassword
      • Proxy
        • ProxyAutoDetect
        • ProxyServer
        • ProxyPort
        • ProxyAuthScheme
        • ProxyUser
        • ProxyPassword
        • ProxySSLType
        • ProxyExceptions
      • Logging
        • LogModules
      • Schema
        • Location
        • BrowsableSchemas
        • Tables
        • Views
      • Miscellaneous
        • AsyncQueryTimeout
        • ConvertToCurrencies
        • MaxRows
        • Other
        • PseudoColumns
        • Timeout
        • UserDefinedViews

Zuora Connector for CData Sync

Overview

The CData Sync App provides a straightforward way to continuously pipeline your Zuora data to any database, data lake, or data warehouse, making it easily available for Analytics, Reporting, AI, and Machine Learning.

The Zuora connector can be used from the CData Sync application to pull data from Zuora and move it to any of the supported destinations.

Zuora Version Support

The Sync App leverages the Zuora API to enable bidirectional access to Zuora.

Zuora Connector for CData Sync

Establishing a Connection

Adding a Connection to Zuora

To add a connection to Zuora:

  1. In the application console, navigate to the Connections page.
  2. At the Add Connections panel, select the icon for the connection you want to add.
  3. If the Zuora icon is not available, click the Add More icon to download and install the Zuora connector from the CData site.

For required properties, see the Settings tab.

For connection properties that are not typically required, see the Advanced tab.

Connecting to Zuora

In order to create a valid connection with Zuora, you must configure the Tenant property. Choose the Tenant value that matches your account configuration. Available options:

  • USProduction: Requests sent to https://rest.zuora.com. (default)
  • USAPISandbox: Requests sent to https://rest.apisandbox.zuora.com"
  • USPerformanceTest: Requests sent to https://rest.pt1.zuora.com"
  • EUProduction: Requests sent to https://rest.eu.zuora.com"
  • EUSandbox: Requests sent to https://rest.sandbox.eu.zuora.com"

After you configure the Tenant you must create a custom OAuth application to generate a token. This is a simple one-time operation. For further information, see Creating a Custom OAuth Application.

Authenticating to Zuora

OAuth

You must create a custom application that includes a client Id and client secret for authentication.

Before you connect, set the following variables:

  • OAuthClientId: The client Id assigned when you registered your custom OAuth application.
  • OAuthClientSecret: The client secret assigned when you registered your custom OAuth application.

Click Connect to Zuora to open the OAuth endpoint in your default browser. Log in and grant permissions to the application.

The driver then completes the OAuth process as follows:

  • Extracts the access token from the callback URL.
  • Obtains a new access token when the old one expires.
  • Saves OAuth values so that they persist across connections.

Selecting a Zuora Service

We utilize two Zuora services: Data Query and AQuA API. By default ZuoraService is set to AQuADataExport.

DataQuery

The Data Query feature enables you to export data from your Zuora tenant by performing asynchronous, read-only SQL queries. We recommend to use this service for quick lightweight SQL queries.

Limitations

  • The maximum number of input records per table after filters have been applied: 1,000,000
  • The maximum number of output records: 100,000
  • The maximum number of simultaneous queries submitted for execution per tenant: 5
  • The maximum number of queued queries submitted for execution after reaching the limitation of simultaneous queries per tenant: 10
  • The maximum processing time for each query in hours: 1
  • The maximum size of memory allocated to each query in GB: 2
  • The maximum number of indices when using Index Join, in other words, the maximum number of records being returned by the left table based on the unique value used in the WHERE clause when using Index Join: 20,000

Selecting a Zuora Service

We utilize two Zuora services: Data Query and AQuA API. By default ZuoraService is set to AQuADataExport.

DataQuery

The Data Query feature enables you to export data from your Zuora tenant by performing asynchronous, read-only SQL queries. We recommend to use this service for quick lightweight SQL queries.

Limitations

  • The maximum number of input records per table after filters have been applied: 1,000,000
  • The maximum number of output records: 100,000
  • The maximum number of simultaneous queries submitted for execution per tenant: 5
  • The maximum number of queued queries submitted for execution after reaching the limitation of simultaneous queries per tenant: 10
  • The maximum processing time for each query in hours: 1
  • The maximum size of memory allocated to each query in GB: 2
  • The maximum number of indices when using Index Join, in other words, the maximum number of records being returned by the left table based on the unique value used in the WHERE clause when using Index Join: 20,000

AQuADataExport

AQuA API export is designed to export all the records for all the objects ( tables ). AQuA query jobs have the following limitations:

Limitations

  • If a query in an AQuA job is executed longer than 8 hours, this job will be killed automatically.
  • The killed AQuA job can be retried three times before returned as failed.

Zuora Connector for CData Sync

Creating a Custom OAuth Application

Creating a Custom OAuth Application

All users authenticate to the Zuora via the OAuth 2.0 mechanism. The Sync App uses the client_credential grant type, which means that only the OAuthClientId and OAuthClientSecret are needed to generate a token. This is done via a single HTTP request.

In order to obtain the OAuthClientId and OAuthClientSecret, you must first create a custom OAuth client in the Zuora UI.

Do the following:

  1. Using an account that has administration privileges for your Zuora tenant, log in to the Zuora Profiles & Settings menu.
  2. Navigate to Administration > Manage Users.
  3. Create a user. Applications that use OAuth to authenticate to your Zuora tenant will perform actions as this user. Zuora recommends that you create an API user specifically for this purpose.
  4. Navigate to your Zuora tenant's Users page.
  5. Select the new user you just created, then create an OAuth client for that user.
  6. Note the Client Id and Client secret for future use.

Zuora Connector for CData Sync

Advanced Features

This section details a selection of advanced features of the Zuora Sync App.

User Defined Views

The Sync App supports the use of user defined views, virtual tables whose contents are decided by a pre-configured user defined query. These views are useful when you cannot directly control queries being issued to the drivers. For an overview of creating and configuring custom views, see User Defined Views .

SSL Configuration

Use SSL Configuration to adjust how Sync App handles TLS/SSL certificate negotiations. You can choose from various certificate formats;. For further information, see the SSLServerCert property under "Connection String Options" .

Firewall and Proxy

Configure the Sync App for compliance with Firewall and Proxy, including Windows proxies and HTTP proxies. You can also set up tunnel connections.

Query Processing

The Sync App offloads as much of the SELECT statement processing as possible to Zuora and then processes the rest of the query in memory (client-side).

For further information, see Query Processing.

Logging

For an overview of configuration settings that can be used to refine CData logging, see Logging. Only two connection properties are required for basic logging, but there are numerous features that support more refined logging, which enables you to use the LogModules connection property to specify subsets of information to be logged.

Zuora Connector for CData Sync

SSL Configuration

Customizing the SSL Configuration

By default, the Sync App attempts to negotiate TLS with the server. The server certificate is validated against the default system trusted certificate store. You can override how the certificate gets validated using the SSLServerCert connection property.

To specify another certificate, see the SSLServerCert connection property.

Zuora Connector for CData Sync

Firewall and Proxy

Connecting Through a Firewall or Proxy

HTTP Proxies

To authenticate to an HTTP proxy, set the following:

  • ProxyServer: the hostname or IP address of the proxy server that you want to route HTTP traffic through.
  • ProxyPort: the TCP port that the proxy server is running on.
  • ProxyAuthScheme: the authentication method the Sync App uses when authenticating to the proxy server.
  • ProxyUser: the username of a user account registered with the proxy server.
  • ProxyPassword: the password associated with the ProxyUser.

Other Proxies

Set the following properties:

  • To use a proxy-based firewall, set FirewallType, FirewallServer, and FirewallPort.
  • To tunnel the connection, set FirewallType to TUNNEL.
  • To authenticate, specify FirewallUser and FirewallPassword.
  • To authenticate to a SOCKS proxy, additionally set FirewallType to SOCKS5.

Zuora Connector for CData Sync

Data Model

The Sync App dynamically extracts all relevant schema information from Zuora via the REST API. All Zuora entities will be exposed as views.

The CData Sync App models Zuora objects as relational tables and views. A Zuora object has relationships to other objects; in the tables, these relationships are expressed through foreign keys. The following sections show the available API objects and provide more information on executing SQL to Zuora APIs.

Schemas for most database objects are defined in simple, text-based configuration files.

Stored Procedures

Stored Procedures are function-like interfaces to Zuora. They can be used create schema files or get and refresh OAuth Access tokens for Zuora apps.

Zuora Connector for CData Sync

Views

Views are similar to tables in the way that data is represented; however, views are read-only.

Queries can be executed against a view as if it were a normal table.

Zuora Connector for CData Sync Views

Name Description
Account An account is a customer account that collects all of the critical information about the customer, such as contact information, payment terms, and payment methods.
AccountingCode Each row of this table represents an accounting code.
AccountingPeriod Accounting periods match your financial periods.An accounting period holds the information you need to perform your company's bookkeeping activities, especially tracking and reporting financial activities such as earnings, expenses, and taxes.
Amendment An amendment to a subscription.
ApplicationGroup A group of payment, refund, and credit memo applications.
Attachment The information of a file attached to a Zuora object.
BillingRun Each row of this table represents a billing run.
ChargeMetrics A charge metrics service for accessing the key metrics for Rate Plan Charges in Zuora.
Contact A contact person. For example, the Bill To contact of a customer account
ContactSnapshot A copy of the Bill To or Sold To contact information from a posted invoice.
CreditBalanceAdjustment An adjustment to the credit balance of a customer account.
CreditMemo A credit memo that is owned by a customer account.
CreditMemoApplication A credit memo that is applied to an invoice or a debit memo.
CreditMemoApplicationItem A credit memo that is applied to a line item in an invoice or a line item in a debit memo.
CreditMemoItem A line item in a credit memo.
CreditMemoPart An applied or unapplied portion of a credit memo.
CreditMemoPartItem A portion of a credit memo that is applied to a line item in an invoice or a line item in a debit memo.
CreditTaxationItem A taxation line item in a credit memo.
DebitMemo A debit memo that is owned by a customer account.
DebitMemoItem A line item in a debit memo.
DebitTaxationItem A taxation line item in a debit memo.
DiscountAppliedMetrics A discount rate plan charge that is applied to another rate plan charge.
DiscountApplyDetail Details for the applied discount.
Feature Each row of this table represents a feature.
FXCustomRate A custom exchange rate.
Invoice An invoice represents a bill to a customer.
InvoiceAdjustment An adjustment to an invoice.
InvoiceItem A line item in an invoice.
InvoiceItemAdjustment An adjustment to a line item in an invoice.
InvoicePayment A payment that is applied to an invoice.
JournalEntry A journal entry.
JournalEntryItem A line item in a journal entry.
JournalRun A journal run.
OrderAction An order action that is applied to a subscription.
OrderElp An extended list price metric for an order action.
OrderItem An order item.
OrderMrr A monthly recurring revenue metric for an order action.
OrderQuantity A quantity metric for an order action.
Orders Each row of this table represents an order.
OrderTcb A total contracted billing metric for an order action.
OrderTcv A total contract value metric for an order action.
Payment Each row of this table represents a payment.
PaymentApplication A payment that is applied to an invoice or a debit memo.
PaymentApplicationItem A payment that is applied to a line item in an invoice or a line item in a debit memo.
PaymentGatewayReconciliationEventLog An event that was processed by a payment reconciliation job.
PaymentMethod A payment method.
PaymentMethodSnapshot A copy of the payment method that was used in a transaction.
PaymentMethodTransactionLog A transaction from Zuora to the payment gateway associated with a payment method.
PaymentPart An applied or unapplied portion of a payment.
PaymentPartItem A portion of a payment that is applied to a line item in an invoice or a line item in a debit memo.
PaymentReconciliationJob A payment reconciliation job.
PaymentReconciliationLog A reconciled transaction that was processed by a payment reconciliation job.
PaymentRun A payment run.
PaymentTransactionLog A transaction from Zuora to the payment gateway associated with a payment.
ProcessedUsage Uploaded usage that has been processed.
Product A product in your product catalog.
ProductFeature A feature in your product catalog.
ProductRatePlan A rate plan in your product catalog.
ProductRatePlanCharge A charge in your product catalog.
ProductRatePlanChargeTier A charge tier in your product catalog.
RatePlan A rate plan in a subscription.
RatePlanCharge A charge in a subscription.
RatePlanChargeTier A charge tier in a subscription.
Refund Each row of this table represents a refund.
RefundApplication A refund that is applied to a payment or a credit memo.
RefundApplicationItem A refund that is applied to a line item in a credit memo.
RefundInvoicePayment A refunded portion of a payment that is applied to an invoice.
RefundPart An applied or unapplied portion of a refund.
RefundPartItem A portion of a refund that is applied to a line item in a credit memo.
RefundTransactionLog A transaction from Zuora to the payment gateway associated with a payment.
RevenueChargeSummary A revenue distribution summary of a charge.
RevenueChargeSummaryItem An item in a revenue distribution summary of a charge.
RevenueEvent A revenue event.
RevenueEventCreditMemoItem A revenue event that is associated with a line item in a credit memo.
RevenueEventDebitMemoItem A revenue event that is associated with a line item in a debit memo.
RevenueEventInvoiceItem A revenue event that is associated with a line item in an invoice.
RevenueEventInvoiceItemAdjustment A revenue event that is associated with an adjustment to a line item in an invoice.
RevenueEventItem A revenue event item.
RevenueEventItemCreditMemoItem A revenue event item that is associated with a line item in a credit memo.
RevenueEventItemDebitMemoItem A revenue event item that is associated with a line item in a debit memo.
RevenueEventItemInvoiceItem A revenue event item that is associated with a line item in an invoice.
RevenueEventItemInvoiceItemAdjustment A revenue event item that is associated with an adjustment to a line item in an invoice.
RevenueEventType A revenue event type.
RevenueSchedule A revenue schedule.
RevenueScheduleCreditMemoItem A revenue schedule that is associated with a line item in a credit memo.
RevenueScheduleDebitMemoItem A revenue schedule that is associated with a line item in a debit memo.
RevenueScheduleInvoiceItem A revenue schedule that is associated with a line item in an invoice.
RevenueScheduleInvoiceItemAdjustment A revenue schedule that is associated with an adjustment to a line item in an invoice.
RevenueScheduleItem A revenue schedule item.
RevenueScheduleItemCreditMemoItem A revenue schedule item that is associated with a line item in a credit memo.
RevenueScheduleItemInvoiceItem A revenue schedule item that is associated with a line item in an invoice.
RevenueScheduleItemInvoiceItemAdjustment A revenue schedule item that is associated with an adjustment to a line item in an invoice.
Subscription Each row of this table represents a subscription.
SubscriptionProductFeature Each row of this table represents a subscription for a product feature.
TaxationItem A taxation line item in an invoice.
UpdaterBatch A batch of payment methods that was sent to a payment method updater service provider.
UpdaterDetail A payment method update.
Usage A usage record.f the Active Rating feature is enabled, each row represents a usage record that was created via the Active Rating feature.
User A user in your Zuora tenant. Only platform admin users can access this table.

Zuora Connector for CData Sync

Account

An account is a customer account that collects all of the critical information about the customer, such as contact information, payment terms, and payment methods.

Columns

Name Type Description
taxexempteffectivedate Date Date when the customer's tax exemption starts.
invoicetemplateid String The ID of the invoice template. Each customer account can use a specific invoice template for invoice generation.
totaldebitmemobalance Decimal The total debit memo balance.
updateddate Datetime Date when the account was last updated.
name String Name of the account as displayed in the Zuora UI.
createdbyid String ID of the Zuora user who created the Account object.
taxexemptissuingjurisdiction String Indicates the jurisdiction in which the customer's tax exemption certificate was issued.
currency String Currency that the customer is billed in.
taxexemptcertificateid String ID of your customer's tax exemption certificate.
crmid String CRM account ID for the account. Used in Salesforce integration.
defaultpaymentmethodid String ID of the default payment method for the account. This field is required if the AutoPay field is set to true.
status String Status of the account in the system.
creditmemotemplateid String The credit memo template id.
debitmemotemplateid String The debit memo template id.
communicationprofileid String Associates the account with a specified communication profile.
invoicedeliveryprefsemail Bool Indicates if the customer wants to receive invoices through email.
bcdsettingoption String Billing cycle day setting option.
createddate Datetime Date when the Account object was created.
unappliedcreditmemoamount Decimal The unapplied credit memo amount.
taxcompanycode String Unique code that identifies a company account in Avalara. Use this field to calculate taxes based on origin and sold-to addresses in Avalara.
id String ID of object. Upon creation of this object, this field becomes AccountId.
balance Decimal Current outstanding balance for the account.
soldtoid String ID of the person who bought the subscription associated with the account.
unappliedbalance Decimal The unapplied balance.
invoicedeliveryprefsprint Bool Indicates if the customer wants to receive printed invoices, such as through postal mail.
sequencesetid String The ID of the billing document sequence set to assign to the customer account.
additionalemailaddresses String List of additional email addresses to receive emailed invoices.
mrr Decimal
taxexemptexpirationdate Date Date when the customer's tax exemption certificate expires.
incollections_c String You can use this fields as custom field in your customization.
totalinvoicebalance Decimal Total balance of the account's invoices.
taxexemptentityusecode String You can use this fields as custom field in your customization.
batch String Organizes your customer accounts into groups to optimize your billing and payment operations.
paymentgateway String Gateway used for processing electronic payments and refunds.
billcycleday String Billing cycle day (BCD) on which bill runs generate invoices for the account.
billtoid String ID of the person to bill for the account
notes String Comments about the account.
vatid String EU Value Added Tax ID.
parentid String Identifier of the parent customer account for this Account object. Use this field if you have customer hierarchy enabled.
purchaseordernumber String The number of the purchase order associated with this account. Purchase order information generally comes from customers.
updatedbyid String ID of the user who last updated the account.
creditbalance Decimal Total credit balance for the account.
autopay Bool Indicates if future payments are automatically collected when they're due during a Payment Run
customerservicerepname String Name of the account's customer service representative, if applicable.
paymentterm String Indicates when the customer pays for subscriptions.
entity_c String
lastinvoicedate Date The date when the previous invoice was generated for the account. The field value is null if no invoice has ever been generated for the account.
accountnumber String Unique account number assigned to the account.
taxexemptstatus String Status of the account's tax exemption.
taxexemptcertificatetype String Type of the tax exemption certificate that your customer holds.
salesrepname String The name of the sales representative associated with this account, if applicable.
taxexemptdescription String Description of the tax exemption certificate that your customer holds.
allowinvoiceedit Bool Indicates if associated invoices can be edited.

Zuora Connector for CData Sync

AccountingCode

Each row of this table represents an accounting code.

Columns

Name Type Description
status String The 'status' column for the 'accountingcode' table.
category String The 'category' column for the 'accountingcode' table.
updateddate Datetime The 'updateddate' column for the 'accountingcode' table.
updatedbyid String The 'updatedbyid' column for the 'accountingcode' table.
glaccountname String The 'glaccountname' column for the 'accountingcode' table.
name String The 'name' column for the 'accountingcode' table.
type String The 'type' column for the 'accountingcode' table.
createdbyid String The 'createdbyid' column for the 'accountingcode' table.
createddate Datetime The 'createddate' column for the 'accountingcode' table.
glaccountnumber String The 'glaccountnumber' column for the 'accountingcode' table.
id String The 'id' column for the 'accountingcode' table.
notes String The 'notes' column for the 'accountingcode' table.

Zuora Connector for CData Sync

AccountingPeriod

Accounting periods match your financial periods.An accounting period holds the information you need to perform your company's bookkeeping activities, especially tracking and reporting financial activities such as earnings, expenses, and taxes.

Columns

Name Type Description
startdate Date The 'startdate' column for the 'accountingperiod' table.
status String The 'status' column for the 'accountingperiod' table.
fiscalquarter String The 'fiscalquarter' column for the 'accountingperiod' table.
fiscalyear String The 'fiscalyear' column for the 'accountingperiod' table.
createdbyid String The 'createdbyid' column for the 'accountingperiod' table.
updateddate Datetime The 'updateddate' column for the 'accountingperiod' table.
updatedbyid String The 'updatedbyid' column for the 'accountingperiod' table.
createddate Datetime The 'createddate' column for the 'accountingperiod' table.
id String The 'id' column for the 'accountingperiod' table.
enddate Date The 'enddate' column for the 'accountingperiod' table.
notes String The 'notes' column for the 'accountingperiod' table.
name String The 'name' column for the 'accountingperiod' table.

Zuora Connector for CData Sync

Amendment

An amendment to a subscription.

Columns

Name Type Description
currenttermperiodtype String The 'currenttermperiodtype' column for the 'amendment' table.
description String The 'description' column for the 'amendment' table.
updateddate Datetime The 'updateddate' column for the 'amendment' table.
autorenew Bool The 'autorenew' column for the 'amendment' table.
renewaltermperiodtype String The 'renewaltermperiodtype' column for the 'amendment' table.
serviceactivationdate Date The 'serviceactivationdate' column for the 'amendment' table.
resumedate Date The 'resumedate' column for the 'amendment' table.
suspenddate Date The 'suspenddate' column for the 'amendment' table.
termtype String The 'termtype' column for the 'amendment' table.
name String The 'name' column for the 'amendment' table.
contracteffectivedate Date The 'contracteffectivedate' column for the 'amendment' table.
customeracceptancedate Date The 'customeracceptancedate' column for the 'amendment' table.
subscriptionid String The 'subscriptionid' column for the 'amendment' table.
createdbyid String The 'createdbyid' column for the 'amendment' table.
currentterm String The 'currentterm' column for the 'amendment' table.
status String The 'status' column for the 'amendment' table.
updatedbyid String The 'updatedbyid' column for the 'amendment' table.
renewalsetting String The 'renewalsetting' column for the 'amendment' table.
specificupdatedate Date The 'specificupdatedate' column for the 'amendment' table.
code String The 'code' column for the 'amendment' table.
type String The 'type' column for the 'amendment' table.
termstartdate Date The 'termstartdate' column for the 'amendment' table.
createddate Datetime The 'createddate' column for the 'amendment' table.
renewalterm String The 'renewalterm' column for the 'amendment' table.
id String The 'id' column for the 'amendment' table.
effectivedate Date The 'effectivedate' column for the 'amendment' table.

Zuora Connector for CData Sync

ApplicationGroup

A group of payment, refund, and credit memo applications.

Columns

Name Type Description
createdbyid String The 'createdbyid' column for the 'applicationgroup' table.
updateddate Datetime The 'updateddate' column for the 'applicationgroup' table.
operationdate Date The 'operationdate' column for the 'applicationgroup' table.
updatedbyid String The 'updatedbyid' column for the 'applicationgroup' table.
createddate Datetime The 'createddate' column for the 'applicationgroup' table.
paymentid String The 'paymentid' column for the 'applicationgroup' table.
id String The 'id' column for the 'applicationgroup' table.
refundid String The 'refundid' column for the 'applicationgroup' table.

Zuora Connector for CData Sync

Attachment

The information of a file attached to a Zuora object.

Columns

Name Type Description
description String The 'description' column for the 'attachment' table.
updateddate Datetime The 'updateddate' column for the 'attachment' table.
size String The 'size' column for the 'attachment' table.
updatedbyid String The 'updatedbyid' column for the 'attachment' table.
filename String The 'filename' column for the 'attachment' table.
associatedobjectid String The 'associatedobjectid' column for the 'attachment' table.
associatedobjecttype String The 'associatedobjecttype' column for the 'attachment' table.
createdbyid String The 'createdbyid' column for the 'attachment' table.
createddate Datetime The 'createddate' column for the 'attachment' table.
fileid String The 'fileid' column for the 'attachment' table.
id String The 'id' column for the 'attachment' table.
filecontenttype String The 'filecontenttype' column for the 'attachment' table.

Zuora Connector for CData Sync

BillingRun

Each row of this table represents a billing run.

Columns

Name Type Description
executeddate Datetime The 'executeddate' column for the 'billingrun' table.
numberofaccounts String The 'numberofaccounts' column for the 'billingrun' table.
accountid String The 'accountid' column for the 'billingrun' table.
runtime String The 'runtime' column for the 'billingrun' table.
updateddate Datetime The 'updateddate' column for the 'billingrun' table.
repeatto String The 'repeatto' column for the 'billingrun' table.
autoemail Bool The 'autoemail' column for the 'billingrun' table.
targetdateoffset String The 'targetdateoffset' column for the 'billingrun' table.
startdate Datetime The 'startdate' column for the 'billingrun' table.
invoicedateoffset String The 'invoicedateoffset' column for the 'billingrun' table.
chargetypetoexclude String The 'chargetypetoexclude' column for the 'billingrun' table.
createdbyid String The 'createdbyid' column for the 'billingrun' table.
autopost Bool The 'autopost' column for the 'billingrun' table.
billcycleday String The 'billcycleday' column for the 'billingrun' table.
lastemailsenttime Datetime The 'lastemailsenttime' column for the 'billingrun' table.
targettype String The 'targettype' column for the 'billingrun' table.
totaltime String The 'totaltime' column for the 'billingrun' table.
noemailforzeroamountinvoice Bool The 'noemailforzeroamountinvoice' column for the 'billingrun' table.
invoicedate Date The 'invoicedate' column for the 'billingrun' table.
monthlyonday String The 'monthlyonday' column for the 'billingrun' table.
numberofcreditmemos String The 'numberofcreditmemos' column for the 'billingrun' table.
billingruntype String The 'billingruntype' column for the 'billingrun' table.
numberofinvoices String The 'numberofinvoices' column for the 'billingrun' table.
status String The 'status' column for the 'billingrun' table.
updatedbyid String The 'updatedbyid' column for the 'billingrun' table.
weeklyonday String The 'weeklyonday' column for the 'billingrun' table.
repeatfrom String The 'repeatfrom' column for the 'billingrun' table.
enddate Datetime The 'enddate' column for the 'billingrun' table.
invoicesemailed Bool The 'invoicesemailed' column for the 'billingrun' table.
timezone String The 'timezone' column for the 'billingrun' table.
autorenewal Bool The 'autorenewal' column for the 'billingrun' table.
targetdate Date The 'targetdate' column for the 'billingrun' table.
createddate Datetime The 'createddate' column for the 'billingrun' table.
billingrunnumber String The 'billingrunnumber' column for the 'billingrun' table.
posteddate Datetime The 'posteddate' column for the 'billingrun' table.
batches String The 'batches' column for the 'billingrun' table.
repeattype String The 'repeattype' column for the 'billingrun' table.
id String The 'id' column for the 'billingrun' table.
errormessage String The 'errormessage' column for the 'billingrun' table.

Zuora Connector for CData Sync

ChargeMetrics

A charge metrics service for accessing the key metrics for Rate Plan Charges in Zuora.

Columns

Name Type Description
subscriptionowneraccountnumber String The 'subscriptionowneraccountnumber' column for the 'chargemetrics' table.
tcvdiscountamount Decimal The 'tcvdiscountamount' column for the 'chargemetrics' table.
tcvgrossamount Decimal The 'tcvgrossamount' column for the 'chargemetrics' table.
amendmentid String The 'amendmentid' column for the 'chargemetrics' table.
rateplanchargeid String The 'rateplanchargeid' column for the 'chargemetrics' table.
mrrgrossamount Decimal The 'mrrgrossamount' column for the 'chargemetrics' table.
updateddate Datetime The 'updateddate' column for the 'chargemetrics' table.
amendmenttype String The 'amendmenttype' column for the 'chargemetrics' table.
productrateplanid String The 'productrateplanid' column for the 'chargemetrics' table.
productid String The 'productid' column for the 'chargemetrics' table.
subscriptionname String The 'subscriptionname' column for the 'chargemetrics' table.
enddate Date The 'enddate' column for the 'chargemetrics' table.
startdate Date The 'startdate' column for the 'chargemetrics' table.
productrateplanchargeid String The 'productrateplanchargeid' column for the 'chargemetrics' table.
mrrnetamount Decimal The 'mrrnetamount' column for the 'chargemetrics' table.
tcvnetamount Decimal The 'tcvnetamount' column for the 'chargemetrics' table.
currency String The 'currency' column for the 'chargemetrics' table.
createddate Datetime The 'createddate' column for the 'chargemetrics' table.
id String The 'id' column for the 'chargemetrics' table.
invoiceowneraccountnumber String The 'invoiceowneraccountnumber' column for the 'chargemetrics' table.
chargenumber String The 'chargenumber' column for the 'chargemetrics' table.
mrrdiscountamount Decimal The 'mrrdiscountamount' column for the 'chargemetrics' table.

Zuora Connector for CData Sync

Contact

A contact person. For example, the Bill To contact of a customer account

Columns

Name Type Description
taxregion String The 'taxregion' column for the 'contact' table.
otherphone String The 'otherphone' column for the 'contact' table.
accountid String The 'accountid' column for the 'contact' table.
description String The 'description' column for the 'contact' table.
updateddate Datetime The 'updateddate' column for the 'contact' table.
postalcode String The 'postalcode' column for the 'contact' table.
county String The 'county' column for the 'contact' table.
mobilephone String The 'mobilephone' column for the 'contact' table.
personalemail String The 'personalemail' column for the 'contact' table.
createdbyid String The 'createdbyid' column for the 'contact' table.
workphone String The 'workphone' column for the 'contact' table.
firstname String The 'firstname' column for the 'contact' table.
updatedbyid String The 'updatedbyid' column for the 'contact' table.
address2 String The 'address2' column for the 'contact' table.
address1 String The 'address1' column for the 'contact' table.
city String The 'city' column for the 'contact' table.
workemail String The 'workemail' column for the 'contact' table.
nickname String The 'nickname' column for the 'contact' table.
homephone String The 'homephone' column for the 'contact' table.
state String The 'state' column for the 'contact' table.
createddate Datetime The 'createddate' column for the 'contact' table.
country String The 'country' column for the 'contact' table.
id String The 'id' column for the 'contact' table.
lastname String The 'lastname' column for the 'contact' table.
fax String The 'fax' column for the 'contact' table.
otherphonetype String The 'otherphonetype' column for the 'contact' table.

Zuora Connector for CData Sync

ContactSnapshot

A copy of the Bill To or Sold To contact information from a posted invoice.

Columns

Name Type Description
taxregion String The 'taxregion' column for the 'contactsnapshot' table.
otherphone String The 'otherphone' column for the 'contactsnapshot' table.
accountid String The 'accountid' column for the 'contactsnapshot' table.
description String The 'description' column for the 'contactsnapshot' table.
updateddate Datetime The 'updateddate' column for the 'contactsnapshot' table.
postalcode String The 'postalcode' column for the 'contactsnapshot' table.
contactid String The 'contactid' column for the 'contactsnapshot' table.
county String The 'county' column for the 'contactsnapshot' table.
mobilephone String The 'mobilephone' column for the 'contactsnapshot' table.
personalemail String The 'personalemail' column for the 'contactsnapshot' table.
createdbyid String The 'createdbyid' column for the 'contactsnapshot' table.
workphone String The 'workphone' column for the 'contactsnapshot' table.
firstname String The 'firstname' column for the 'contactsnapshot' table.
updatedbyid String The 'updatedbyid' column for the 'contactsnapshot' table.
address2 String The 'address2' column for the 'contactsnapshot' table.
address1 String The 'address1' column for the 'contactsnapshot' table.
city String The 'city' column for the 'contactsnapshot' table.
workemail String The 'workemail' column for the 'contactsnapshot' table.
nickname String The 'nickname' column for the 'contactsnapshot' table.
homephone String The 'homephone' column for the 'contactsnapshot' table.
state String The 'state' column for the 'contactsnapshot' table.
createddate Datetime The 'createddate' column for the 'contactsnapshot' table.
country String The 'country' column for the 'contactsnapshot' table.
id String The 'id' column for the 'contactsnapshot' table.
lastname String The 'lastname' column for the 'contactsnapshot' table.
fax String The 'fax' column for the 'contactsnapshot' table.
otherphonetype String The 'otherphonetype' column for the 'contactsnapshot' table.

Zuora Connector for CData Sync

CreditBalanceAdjustment

An adjustment to the credit balance of a customer account.

Columns

Name Type Description
customercashonaccountaccountingcodeid String The 'customercashonaccountaccountingcodeid' column for the 'creditbalanceadjustment' table.
accountid String The 'accountid' column for the 'creditbalanceadjustment' table.
accountingcode String The 'accountingcode' column for the 'creditbalanceadjustment' table.
updateddate Datetime The 'updateddate' column for the 'creditbalanceadjustment' table.
transferredtoaccounting String The 'transferredtoaccounting' column for the 'creditbalanceadjustment' table.
invoiceid String The 'invoiceid' column for the 'creditbalanceadjustment' table.
sourcetransactiontype String The 'sourcetransactiontype' column for the 'creditbalanceadjustment' table.
createdbyid String The 'createdbyid' column for the 'creditbalanceadjustment' table.
number String The 'number' column for the 'creditbalanceadjustment' table.
referenceid String The 'referenceid' column for the 'creditbalanceadjustment' table.
sourcetransactionid String The 'sourcetransactionid' column for the 'creditbalanceadjustment' table.
adjustmentdate Date The 'adjustmentdate' column for the 'creditbalanceadjustment' table.
cancelledon Datetime The 'cancelledon' column for the 'creditbalanceadjustment' table.
accountingperiodid String The 'accountingperiodid' column for the 'creditbalanceadjustment' table.
journalentryid String The 'journalentryid' column for the 'creditbalanceadjustment' table.
status String The 'status' column for the 'creditbalanceadjustment' table.
comment String The 'comment' column for the 'creditbalanceadjustment' table.
updatedbyid String The 'updatedbyid' column for the 'creditbalanceadjustment' table.
amount Decimal The 'amount' column for the 'creditbalanceadjustment' table.
paymentid String The 'paymentid' column for the 'creditbalanceadjustment' table.
reasoncode String The 'reasoncode' column for the 'creditbalanceadjustment' table.
sourcetransactionnumber String The 'sourcetransactionnumber' column for the 'creditbalanceadjustment' table.
cashaccountingcodeid String The 'cashaccountingcodeid' column for the 'creditbalanceadjustment' table.
type String The 'type' column for the 'creditbalanceadjustment' table.
createddate Datetime The 'createddate' column for the 'creditbalanceadjustment' table.
id String The 'id' column for the 'creditbalanceadjustment' table.
refundid String The 'refundid' column for the 'creditbalanceadjustment' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'creditbalanceadjustment' table.

Zuora Connector for CData Sync

CreditMemo

A credit memo that is owned by a customer account.

Columns

Name Type Description
postedbyid String The 'postedbyid' column for the 'creditmemo' table.
accountid String The 'accountid' column for the 'creditmemo' table.
cancelledbyid String The 'cancelledbyid' column for the 'creditmemo' table.
updateddate Datetime The 'updateddate' column for the 'creditmemo' table.
sourceid String The 'sourceid' column for the 'creditmemo' table.
transferredtoaccounting String The 'transferredtoaccounting' column for the 'creditmemo' table.
totaltaxexemptamount Decimal The 'totaltaxexemptamount' column for the 'creditmemo' table.
memonumber String The 'memonumber' column for the 'creditmemo' table.
taxmessage String The 'taxmessage' column for the 'creditmemo' table.
invoiceid String The 'invoiceid' column for the 'creditmemo' table.
source String The 'source' column for the 'creditmemo' table.
taxamount Decimal The 'taxamount' column for the 'creditmemo' table.
createdbyid String The 'createdbyid' column for the 'creditmemo' table.
exchangeratedate Date The 'exchangeratedate' column for the 'creditmemo' table.
cancelledon Datetime The 'cancelledon' column for the 'creditmemo' table.
totalamountwithouttax Decimal The 'totalamountwithouttax' column for the 'creditmemo' table.
postedon Datetime The 'postedon' column for the 'creditmemo' table.
billtocontactsnapshotid String The 'billtocontactsnapshotid' column for the 'creditmemo' table.
status String The 'status' column for the 'creditmemo' table.
memodate Date The 'memodate' column for the 'creditmemo' table.
comments String The 'comments' column for the 'creditmemo' table.
updatedbyid String The 'updatedbyid' column for the 'creditmemo' table.
appliedamount Decimal The 'appliedamount' column for the 'creditmemo' table.
refundamount Decimal The 'refundamount' column for the 'creditmemo' table.
totalamount Decimal The 'totalamount' column for the 'creditmemo' table.
soldtocontactsnapshotid String The 'soldtocontactsnapshotid' column for the 'creditmemo' table.
reasoncode String The 'reasoncode' column for the 'creditmemo' table.
discountamount Decimal The 'discountamount' column for the 'creditmemo' table.
targetdate Date The 'targetdate' column for the 'creditmemo' table.
createddate Datetime The 'createddate' column for the 'creditmemo' table.
taxstatus String The 'taxstatus' column for the 'creditmemo' table.
id String The 'id' column for the 'creditmemo' table.
balance Decimal The 'balance' column for the 'creditmemo' table.

Zuora Connector for CData Sync

CreditMemoApplication

A credit memo that is applied to an invoice or a debit memo.

Columns

Name Type Description
debitmemoid String The 'debitmemoid' column for the 'creditmemoapplication' table.
accountid String The 'accountid' column for the 'creditmemoapplication' table.
updateddate Datetime The 'updateddate' column for the 'creditmemoapplication' table.
updatedbyid String The 'updatedbyid' column for the 'creditmemoapplication' table.
amount Decimal The 'amount' column for the 'creditmemoapplication' table.
invoiceid String The 'invoiceid' column for the 'creditmemoapplication' table.
creditmemoid String The 'creditmemoid' column for the 'creditmemoapplication' table.
createdbyid String The 'createdbyid' column for the 'creditmemoapplication' table.
createddate Datetime The 'createddate' column for the 'creditmemoapplication' table.
id String The 'id' column for the 'creditmemoapplication' table.
applicationgroupid String The 'applicationgroupid' column for the 'creditmemoapplication' table.
effectivedate Date The 'effectivedate' column for the 'creditmemoapplication' table.

Zuora Connector for CData Sync

CreditMemoApplicationItem

A credit memo that is applied to a line item in an invoice or a line item in a debit memo.

Columns

Name Type Description
updateddate Datetime The 'updateddate' column for the 'creditmemoapplicationitem' table.
updatedbyid String The 'updatedbyid' column for the 'creditmemoapplicationitem' table.
amount Decimal The 'amount' column for the 'creditmemoapplicationitem' table.
invoiceitemid String The 'invoiceitemid' column for the 'creditmemoapplicationitem' table.
debitmemoitemid String The 'debitmemoitemid' column for the 'creditmemoapplicationitem' table.
createdbyid String The 'createdbyid' column for the 'creditmemoapplicationitem' table.
createddate Datetime The 'createddate' column for the 'creditmemoapplicationitem' table.
credittaxationitemid String The 'credittaxationitemid' column for the 'creditmemoapplicationitem' table.
debittaxationitemid String The 'debittaxationitemid' column for the 'creditmemoapplicationitem' table.
id String The 'id' column for the 'creditmemoapplicationitem' table.
creditmemoitemid String The 'creditmemoitemid' column for the 'creditmemoapplicationitem' table.
journalentryid String The 'journalentryid' column for the 'creditmemoapplicationitem' table.
taxationitemid String The 'taxationitemid' column for the 'creditmemoapplicationitem' table.
applicationgroupid String The 'applicationgroupid' column for the 'creditmemoapplicationitem' table.
creditmemoapplicationid String The 'creditmemoapplicationid' column for the 'creditmemoapplicationitem' table.
effectivedate Date The 'effectivedate' column for the 'creditmemoapplicationitem' table.

Zuora Connector for CData Sync

CreditMemoItem

A line item in a credit memo.

Columns

Name Type Description
description String The 'description' column for the 'creditmemoitem' table.
updateddate Datetime The 'updateddate' column for the 'creditmemoitem' table.
creditmemoid String The 'creditmemoid' column for the 'creditmemoitem' table.
taxcodename String The 'taxcodename' column for the 'creditmemoitem' table.
taxamount Decimal The 'taxamount' column for the 'creditmemoitem' table.
subscriptionid String The 'subscriptionid' column for the 'creditmemoitem' table.
createdbyid String The 'createdbyid' column for the 'creditmemoitem' table.
servicestartdate Date The 'servicestartdate' column for the 'creditmemoitem' table.
taxexemptamount Decimal The 'taxexemptamount' column for the 'creditmemoitem' table.
unappliedamount Decimal The 'unappliedamount' column for the 'creditmemoitem' table.
journalentryid String The 'journalentryid' column for the 'creditmemoitem' table.
taxmode String The 'taxmode' column for the 'creditmemoitem' table.
billtocontactsnapshotid String The 'billtocontactsnapshotid' column for the 'creditmemoitem' table.
rateplanchargeid String The 'rateplanchargeid' column for the 'creditmemoitem' table.
unitofmeasure String The 'unitofmeasure' column for the 'creditmemoitem' table.
serviceenddate Date The 'serviceenddate' column for the 'creditmemoitem' table.
updatedbyid String The 'updatedbyid' column for the 'creditmemoitem' table.
beappliedbyothersamount Decimal The 'beappliedbyothersamount' column for the 'creditmemoitem' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'creditmemoitem' table.
invoiceitemid String The 'invoiceitemid' column for the 'creditmemoitem' table.
quantity Decimal The 'quantity' column for the 'creditmemoitem' table.
chargename String The 'chargename' column for the 'creditmemoitem' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'creditmemoitem' table.
appliedtoothersamount Decimal The 'appliedtoothersamount' column for the 'creditmemoitem' table.
soldtocontactsnapshotid String The 'soldtocontactsnapshotid' column for the 'creditmemoitem' table.
onaccountaccountingcodeid String The 'onaccountaccountingcodeid' column for the 'creditmemoitem' table.
chargedate Datetime The 'chargedate' column for the 'creditmemoitem' table.
unitprice Decimal The 'unitprice' column for the 'creditmemoitem' table.
productrateplanchargeid String The 'productrateplanchargeid' column for the 'creditmemoitem' table.
createddate Datetime The 'createddate' column for the 'creditmemoitem' table.
processingtype String The 'processingtype' column for the 'creditmemoitem' table.
appliedtoitemid String The 'appliedtoitemid' column for the 'creditmemoitem' table.
amountwithouttax Decimal The 'amountwithouttax' column for the 'creditmemoitem' table.
id String The 'id' column for the 'creditmemoitem' table.
sku String The 'sku' column for the 'creditmemoitem' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'creditmemoitem' table.

Zuora Connector for CData Sync

CreditMemoPart

An applied or unapplied portion of a credit memo.

Columns

Name Type Description
debitmemoid String The 'debitmemoid' column for the 'creditmemopart' table.
accountid String The 'accountid' column for the 'creditmemopart' table.
createdbyid String The 'createdbyid' column for the 'creditmemopart' table.
updateddate Datetime The 'updateddate' column for the 'creditmemopart' table.
updatedbyid String The 'updatedbyid' column for the 'creditmemopart' table.
amount Decimal The 'amount' column for the 'creditmemopart' table.
createddate Datetime The 'createddate' column for the 'creditmemopart' table.
id String The 'id' column for the 'creditmemopart' table.
invoiceid String The 'invoiceid' column for the 'creditmemopart' table.
creditmemoid String The 'creditmemoid' column for the 'creditmemopart' table.

Zuora Connector for CData Sync

CreditMemoPartItem

A portion of a credit memo that is applied to a line item in an invoice or a line item in a debit memo.

Columns

Name Type Description
updateddate Datetime The 'updateddate' column for the 'creditmemopartitem' table.
updatedbyid String The 'updatedbyid' column for the 'creditmemopartitem' table.
amount Decimal The 'amount' column for the 'creditmemopartitem' table.
invoiceitemid String The 'invoiceitemid' column for the 'creditmemopartitem' table.
debitmemoitemid String The 'debitmemoitemid' column for the 'creditmemopartitem' table.
creditmemopartid String The 'creditmemopartid' column for the 'creditmemopartitem' table.
createdbyid String The 'createdbyid' column for the 'creditmemopartitem' table.
createddate Datetime The 'createddate' column for the 'creditmemopartitem' table.
credittaxationitemid String The 'credittaxationitemid' column for the 'creditmemopartitem' table.
debittaxationitemid String The 'debittaxationitemid' column for the 'creditmemopartitem' table.
id String The 'id' column for the 'creditmemopartitem' table.
creditmemoitemid String The 'creditmemoitemid' column for the 'creditmemopartitem' table.
taxationitemid String The 'taxationitemid' column for the 'creditmemopartitem' table.

Zuora Connector for CData Sync

CreditTaxationItem

A taxation line item in a credit memo.

Columns

Name Type Description
accountingcode String The 'accountingcode' column for the 'credittaxationitem' table.
updateddate Datetime The 'updateddate' column for the 'credittaxationitem' table.
name String The 'name' column for the 'credittaxationitem' table.
exemptamount Decimal The 'exemptamount' column for the 'credittaxationitem' table.
salestaxpayableaccountingcodeid String The 'salestaxpayableaccountingcodeid' column for the 'credittaxationitem' table.
taxamount Decimal The 'taxamount' column for the 'credittaxationitem' table.
taxcodedescription String The 'taxcodedescription' column for the 'credittaxationitem' table.
createdbyid String The 'createdbyid' column for the 'credittaxationitem' table.
taxcode String The 'taxcode' column for the 'credittaxationitem' table.
taxdate Date The 'taxdate' column for the 'credittaxationitem' table.
taxrate Decimal The 'taxrate' column for the 'credittaxationitem' table.
unappliedamount Decimal The 'unappliedamount' column for the 'credittaxationitem' table.
creditmemoitemid String The 'creditmemoitemid' column for the 'credittaxationitem' table.
journalentryid String The 'journalentryid' column for the 'credittaxationitem' table.
taxratetype String The 'taxratetype' column for the 'credittaxationitem' table.
taxationitemid String The 'taxationitemid' column for the 'credittaxationitem' table.
taxmode String The 'taxmode' column for the 'credittaxationitem' table.
updatedbyid String The 'updatedbyid' column for the 'credittaxationitem' table.
appliedamount Decimal The 'appliedamount' column for the 'credittaxationitem' table.
locationcode String The 'locationcode' column for the 'credittaxationitem' table.
refundamount Decimal The 'refundamount' column for the 'credittaxationitem' table.
onaccountaccountingcodeid String The 'onaccountaccountingcodeid' column for the 'credittaxationitem' table.
jurisdiction String The 'jurisdiction' column for the 'credittaxationitem' table.
taxratedescription String The 'taxratedescription' column for the 'credittaxationitem' table.
createddate Datetime The 'createddate' column for the 'credittaxationitem' table.
id String The 'id' column for the 'credittaxationitem' table.
taxableitemsnapshotid String The 'taxableitemsnapshotid' column for the 'credittaxationitem' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'credittaxationitem' table.

Zuora Connector for CData Sync

DebitMemo

A debit memo that is owned by a customer account.

Columns

Name Type Description
postedbyid String The 'postedbyid' column for the 'debitmemo' table.
accountid String The 'accountid' column for the 'debitmemo' table.
cancelledbyid String The 'cancelledbyid' column for the 'debitmemo' table.
updateddate Datetime The 'updateddate' column for the 'debitmemo' table.
transferredtoaccounting String The 'transferredtoaccounting' column for the 'debitmemo' table.
totaltaxexemptamount Decimal The 'totaltaxexemptamount' column for the 'debitmemo' table.
memonumber String The 'memonumber' column for the 'debitmemo' table.
taxmessage String The 'taxmessage' column for the 'debitmemo' table.
invoiceid String The 'invoiceid' column for the 'debitmemo' table.
source String The 'source' column for the 'debitmemo' table.
taxamount Decimal The 'taxamount' column for the 'debitmemo' table.
createdbyid String The 'createdbyid' column for the 'debitmemo' table.
exchangeratedate Date The 'exchangeratedate' column for the 'debitmemo' table.
cancelledon Datetime The 'cancelledon' column for the 'debitmemo' table.
duedate Date The 'duedate' column for the 'debitmemo' table.
totalamountwithouttax Decimal The 'totalamountwithouttax' column for the 'debitmemo' table.
postedon Datetime The 'postedon' column for the 'debitmemo' table.
billtocontactsnapshotid String The 'billtocontactsnapshotid' column for the 'debitmemo' table.
status String The 'status' column for the 'debitmemo' table.
memodate Date The 'memodate' column for the 'debitmemo' table.
comments String The 'comments' column for the 'debitmemo' table.
updatedbyid String The 'updatedbyid' column for the 'debitmemo' table.
autopay Bool The 'autopay' column for the 'debitmemo' table.
totalamount Decimal The 'totalamount' column for the 'debitmemo' table.
soldtocontactsnapshotid String The 'soldtocontactsnapshotid' column for the 'debitmemo' table.
reasoncode String The 'reasoncode' column for the 'debitmemo' table.
discountamount Decimal The 'discountamount' column for the 'debitmemo' table.
targetdate Date The 'targetdate' column for the 'debitmemo' table.
createddate Datetime The 'createddate' column for the 'debitmemo' table.
taxstatus String The 'taxstatus' column for the 'debitmemo' table.
id String The 'id' column for the 'debitmemo' table.
balance Decimal The 'balance' column for the 'debitmemo' table.
retrystatus_c String The 'retrystatus__c' column for the 'debitmemo' table.

Zuora Connector for CData Sync

DebitMemoItem

A line item in a debit memo.

Columns

Name Type Description
description String The 'description' column for the 'debitmemoitem' table.
updateddate Datetime The 'updateddate' column for the 'debitmemoitem' table.
taxcodename String The 'taxcodename' column for the 'debitmemoitem' table.
taxamount Decimal The 'taxamount' column for the 'debitmemoitem' table.
subscriptionid String The 'subscriptionid' column for the 'debitmemoitem' table.
createdbyid String The 'createdbyid' column for the 'debitmemoitem' table.
servicestartdate Date The 'servicestartdate' column for the 'debitmemoitem' table.
taxexemptamount Decimal The 'taxexemptamount' column for the 'debitmemoitem' table.
journalentryid String The 'journalentryid' column for the 'debitmemoitem' table.
taxmode String The 'taxmode' column for the 'debitmemoitem' table.
billtocontactsnapshotid String The 'billtocontactsnapshotid' column for the 'debitmemoitem' table.
debitmemoid String The 'debitmemoid' column for the 'debitmemoitem' table.
rateplanchargeid String The 'rateplanchargeid' column for the 'debitmemoitem' table.
unitofmeasure String The 'unitofmeasure' column for the 'debitmemoitem' table.
serviceenddate Date The 'serviceenddate' column for the 'debitmemoitem' table.
updatedbyid String The 'updatedbyid' column for the 'debitmemoitem' table.
beappliedbyothersamount Decimal The 'beappliedbyothersamount' column for the 'debitmemoitem' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'debitmemoitem' table.
invoiceitemid String The 'invoiceitemid' column for the 'debitmemoitem' table.
quantity Decimal The 'quantity' column for the 'debitmemoitem' table.
chargename String The 'chargename' column for the 'debitmemoitem' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'debitmemoitem' table.
appliedtoothersamount Decimal The 'appliedtoothersamount' column for the 'debitmemoitem' table.
soldtocontactsnapshotid String The 'soldtocontactsnapshotid' column for the 'debitmemoitem' table.
chargedate Datetime The 'chargedate' column for the 'debitmemoitem' table.
unitprice Decimal The 'unitprice' column for the 'debitmemoitem' table.
productrateplanchargeid String The 'productrateplanchargeid' column for the 'debitmemoitem' table.
createddate Datetime The 'createddate' column for the 'debitmemoitem' table.
processingtype String The 'processingtype' column for the 'debitmemoitem' table.
amountwithouttax Decimal The 'amountwithouttax' column for the 'debitmemoitem' table.
id String The 'id' column for the 'debitmemoitem' table.
sku String The 'sku' column for the 'debitmemoitem' table.
balance Decimal The 'balance' column for the 'debitmemoitem' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'debitmemoitem' table.

Zuora Connector for CData Sync

DebitTaxationItem

A taxation line item in a debit memo.

Columns

Name Type Description
accountingcode String The 'accountingcode' column for the 'debittaxationitem' table.
updateddate Datetime The 'updateddate' column for the 'debittaxationitem' table.
creditamount Decimal The 'creditamount' column for the 'debittaxationitem' table.
debitmemoitemid String The 'debitmemoitemid' column for the 'debittaxationitem' table.
paymentamount Decimal The 'paymentamount' column for the 'debittaxationitem' table.
name String The 'name' column for the 'debittaxationitem' table.
exemptamount Decimal The 'exemptamount' column for the 'debittaxationitem' table.
salestaxpayableaccountingcodeid String The 'salestaxpayableaccountingcodeid' column for the 'debittaxationitem' table.
taxamount Decimal The 'taxamount' column for the 'debittaxationitem' table.
taxcodedescription String The 'taxcodedescription' column for the 'debittaxationitem' table.
createdbyid String The 'createdbyid' column for the 'debittaxationitem' table.
taxcode String The 'taxcode' column for the 'debittaxationitem' table.
taxdate Date The 'taxdate' column for the 'debittaxationitem' table.
taxrate Decimal The 'taxrate' column for the 'debittaxationitem' table.
journalentryid String The 'journalentryid' column for the 'debittaxationitem' table.
taxratetype String The 'taxratetype' column for the 'debittaxationitem' table.
taxationitemid String The 'taxationitemid' column for the 'debittaxationitem' table.
taxmode String The 'taxmode' column for the 'debittaxationitem' table.
updatedbyid String The 'updatedbyid' column for the 'debittaxationitem' table.
locationcode String The 'locationcode' column for the 'debittaxationitem' table.
jurisdiction String The 'jurisdiction' column for the 'debittaxationitem' table.
taxratedescription String The 'taxratedescription' column for the 'debittaxationitem' table.
createddate Datetime The 'createddate' column for the 'debittaxationitem' table.
id String The 'id' column for the 'debittaxationitem' table.
balance Decimal The 'balance' column for the 'debittaxationitem' table.
taxableitemsnapshotid String The 'taxableitemsnapshotid' column for the 'debittaxationitem' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'debittaxationitem' table.

Zuora Connector for CData Sync

DiscountAppliedMetrics

A discount rate plan charge that is applied to another rate plan charge.

Columns

Name Type Description
discountrateplanchargeid String The 'discountrateplanchargeid' column for the 'discountappliedmetrics' table.
startdate Date The 'startdate' column for the 'discountappliedmetrics' table.
rateplanchargeid String The 'rateplanchargeid' column for the 'discountappliedmetrics' table.
createdbyid String The 'createdbyid' column for the 'discountappliedmetrics' table.
updateddate Datetime The 'updateddate' column for the 'discountappliedmetrics' table.
tcv Decimal The 'tcv' column for the 'discountappliedmetrics' table.
updatedbyid String The 'updatedbyid' column for the 'discountappliedmetrics' table.
createddate Datetime The 'createddate' column for the 'discountappliedmetrics' table.
id String The 'id' column for the 'discountappliedmetrics' table.
mrr Decimal The 'mrr' column for the 'discountappliedmetrics' table.
enddate Date The 'enddate' column for the 'discountappliedmetrics' table.

Zuora Connector for CData Sync

DiscountApplyDetail

Details for the applied discount.

Columns

Name Type Description
rateplanchargeid String The 'rateplanchargeid' column for the 'discountapplydetail' table.
appliedproductrateplanid String The 'appliedproductrateplanid' column for the 'discountapplydetail' table.
createdbyid String The 'createdbyid' column for the 'discountapplydetail' table.
updateddate Datetime The 'updateddate' column for the 'discountapplydetail' table.
updatedbyid String The 'updatedbyid' column for the 'discountapplydetail' table.
createddate Datetime The 'createddate' column for the 'discountapplydetail' table.
appliedproductrateplanchargeid String The 'appliedproductrateplanchargeid' column for the 'discountapplydetail' table.
id String The 'id' column for the 'discountapplydetail' table.

Zuora Connector for CData Sync

Feature

Each row of this table represents a feature.

Columns

Name Type Description
status String The 'status' column for the 'feature' table.
description String The 'description' column for the 'feature' table.
createdbyid String The 'createdbyid' column for the 'feature' table.
featuretype_c String The 'featuretype__c' column for the 'feature' table.
updateddate Datetime The 'updateddate' column for the 'feature' table.
updatedbyid String The 'updatedbyid' column for the 'feature' table.
createddate Datetime The 'createddate' column for the 'feature' table.
featurecode String The 'featurecode' column for the 'feature' table.
id String The 'id' column for the 'feature' table.
name String The 'name' column for the 'feature' table.

Zuora Connector for CData Sync

FXCustomRate

A custom exchange rate.

Columns

Name Type Description
ratedate Date The 'ratedate' column for the 'fxcustomrate' table.
createdbyid String The 'createdbyid' column for the 'fxcustomrate' table.
updateddate Datetime The 'updateddate' column for the 'fxcustomrate' table.
rate Decimal The 'rate' column for the 'fxcustomrate' table.
updatedbyid String The 'updatedbyid' column for the 'fxcustomrate' table.
createddate Datetime The 'createddate' column for the 'fxcustomrate' table.
currencyfrom String The 'currencyfrom' column for the 'fxcustomrate' table.
id String The 'id' column for the 'fxcustomrate' table.
currencyto String The 'currencyto' column for the 'fxcustomrate' table.

Zuora Connector for CData Sync

Invoice

An invoice represents a bill to a customer.

Columns

Name Type Description
accountid String The 'accountid' column for the 'invoice' table.
updateddate Datetime The 'updateddate' column for the 'invoice' table.
includesrecurring Bool The 'includesrecurring' column for the 'invoice' table.
sourceid String The 'sourceid' column for the 'invoice' table.
transferredtoaccounting String The 'transferredtoaccounting' column for the 'invoice' table.
taxmessage String The 'taxmessage' column for the 'invoice' table.
paymentamount Decimal The 'paymentamount' column for the 'invoice' table.
source String The 'source' column for the 'invoice' table.
taxamount Decimal The 'taxamount' column for the 'invoice' table.
createdbyid String The 'createdbyid' column for the 'invoice' table.
postedby String The 'postedby' column for the 'invoice' table.
adjustmentamount Decimal The 'adjustmentamount' column for the 'invoice' table.
taxexemptamount Decimal The 'taxexemptamount' column for the 'invoice' table.
invoicedate Date The 'invoicedate' column for the 'invoice' table.
invoicenumber String The 'invoicenumber' column for the 'invoice' table.
duedate Date The 'duedate' column for the 'invoice' table.
billtocontactsnapshotid String The 'billtocontactsnapshotid' column for the 'invoice' table.
lastemailsentdate Datetime The 'lastemailsentdate' column for the 'invoice' table.
status String The 'status' column for the 'invoice' table.
comments String The 'comments' column for the 'invoice' table.
updatedbyid String The 'updatedbyid' column for the 'invoice' table.
amount Decimal The 'amount' column for the 'invoice' table.
includesusage Bool The 'includesusage' column for the 'invoice' table.
refundamount Decimal The 'refundamount' column for the 'invoice' table.
autopay Bool The 'autopay' column for the 'invoice' table.
soldtocontactsnapshotid String The 'soldtocontactsnapshotid' column for the 'invoice' table.
reversed Bool The 'reversed' column for the 'invoice' table.
targetdate Date The 'targetdate' column for the 'invoice' table.
createddate Datetime The 'createddate' column for the 'invoice' table.
includesonetime Bool The 'includesonetime' column for the 'invoice' table.
posteddate Datetime The 'posteddate' column for the 'invoice' table.
taxstatus String The 'taxstatus' column for the 'invoice' table.
amountwithouttax Decimal The 'amountwithouttax' column for the 'invoice' table.
creditbalanceadjustmentamount Decimal The 'creditbalanceadjustmentamount' column for the 'invoice' table.
id String The 'id' column for the 'invoice' table.
balance Decimal The 'balance' column for the 'invoice' table.
retrystatus_c String The 'retrystatus__c' column for the 'invoice' table.

Zuora Connector for CData Sync

InvoiceAdjustment

An adjustment to an invoice.

Columns

Name Type Description
impactamount Decimal The 'impactamount' column for the 'invoiceadjustment' table.
accountid String The 'accountid' column for the 'invoiceadjustment' table.
cancelledbyid String The 'cancelledbyid' column for the 'invoiceadjustment' table.
accountingcode String The 'accountingcode' column for the 'invoiceadjustment' table.
updateddate Datetime The 'updateddate' column for the 'invoiceadjustment' table.
transferredtoaccounting String The 'transferredtoaccounting' column for the 'invoiceadjustment' table.
invoiceid String The 'invoiceid' column for the 'invoiceadjustment' table.
adjustmentnumber String The 'adjustmentnumber' column for the 'invoiceadjustment' table.
createdbyid String The 'createdbyid' column for the 'invoiceadjustment' table.
referenceid String The 'referenceid' column for the 'invoiceadjustment' table.
adjustmentdate Date The 'adjustmentdate' column for the 'invoiceadjustment' table.
invoicenumber String The 'invoicenumber' column for the 'invoiceadjustment' table.
cancelledon Datetime The 'cancelledon' column for the 'invoiceadjustment' table.
journalentryid String The 'journalentryid' column for the 'invoiceadjustment' table.
status String The 'status' column for the 'invoiceadjustment' table.
comments String The 'comments' column for the 'invoiceadjustment' table.
updatedbyid String The 'updatedbyid' column for the 'invoiceadjustment' table.
amount Decimal The 'amount' column for the 'invoiceadjustment' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'invoiceadjustment' table.
reasoncode String The 'reasoncode' column for the 'invoiceadjustment' table.
type String The 'type' column for the 'invoiceadjustment' table.
createddate Datetime The 'createddate' column for the 'invoiceadjustment' table.
id String The 'id' column for the 'invoiceadjustment' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'invoiceadjustment' table.

Zuora Connector for CData Sync

InvoiceItem

A line item in an invoice.

Columns

Name Type Description
soldtocontactid String The 'soldtocontactid' column for the 'invoiceitem' table.
accountid String The 'accountid' column for the 'invoiceitem' table.
accountingcode String The 'accountingcode' column for the 'invoiceitem' table.
updateddate Datetime The 'updateddate' column for the 'invoiceitem' table.
productid String The 'productid' column for the 'invoiceitem' table.
invoiceid String The 'invoiceid' column for the 'invoiceitem' table.
chargeamount Decimal The 'chargeamount' column for the 'invoiceitem' table.
taxamount Decimal The 'taxamount' column for the 'invoiceitem' table.
subscriptionid String The 'subscriptionid' column for the 'invoiceitem' table.
createdbyid String The 'createdbyid' column for the 'invoiceitem' table.
taxcode String The 'taxcode' column for the 'invoiceitem' table.
revrecstartdate Date The 'revrecstartdate' column for the 'invoiceitem' table.
servicestartdate Date The 'servicestartdate' column for the 'invoiceitem' table.
taxexemptamount Decimal The 'taxexemptamount' column for the 'invoiceitem' table.
journalentryid String The 'journalentryid' column for the 'invoiceitem' table.
defaultpaymentmethodid String The 'defaultpaymentmethodid' column for the 'invoiceitem' table.
parentaccountid String The 'parentaccountid' column for the 'invoiceitem' table.
taxmode String The 'taxmode' column for the 'invoiceitem' table.
billtocontactsnapshotid String The 'billtocontactsnapshotid' column for the 'invoiceitem' table.
amendmentid String The 'amendmentid' column for the 'invoiceitem' table.
appliedtoinvoiceitemid String The 'appliedtoinvoiceitemid' column for the 'invoiceitem' table.
rateplanchargeid String The 'rateplanchargeid' column for the 'invoiceitem' table.
serviceenddate Date The 'serviceenddate' column for the 'invoiceitem' table.
updatedbyid String The 'updatedbyid' column for the 'invoiceitem' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'invoiceitem' table.
productrateplanid String The 'productrateplanid' column for the 'invoiceitem' table.
quantity Decimal The 'quantity' column for the 'invoiceitem' table.
chargename String The 'chargename' column for the 'invoiceitem' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'invoiceitem' table.
billtocontactid String The 'billtocontactid' column for the 'invoiceitem' table.
soldtocontactsnapshotid String The 'soldtocontactsnapshotid' column for the 'invoiceitem' table.
rateplanid String The 'rateplanid' column for the 'invoiceitem' table.
chargedate Datetime The 'chargedate' column for the 'invoiceitem' table.
uom String The 'uom' column for the 'invoiceitem' table.
unitprice Decimal The 'unitprice' column for the 'invoiceitem' table.
productrateplanchargeid String The 'productrateplanchargeid' column for the 'invoiceitem' table.
createddate Datetime The 'createddate' column for the 'invoiceitem' table.
processingtype String The 'processingtype' column for the 'invoiceitem' table.
id String The 'id' column for the 'invoiceitem' table.
sku String The 'sku' column for the 'invoiceitem' table.
balance Decimal The 'balance' column for the 'invoiceitem' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'invoiceitem' table.

Zuora Connector for CData Sync

InvoiceItemAdjustment

An adjustment to a line item in an invoice.

Columns

Name Type Description
accountid String The 'accountid' column for the 'invoiceitemadjustment' table.
cancelledbyid String The 'cancelledbyid' column for the 'invoiceitemadjustment' table.
accountingcode String The 'accountingcode' column for the 'invoiceitemadjustment' table.
updateddate Datetime The 'updateddate' column for the 'invoiceitemadjustment' table.
sourceid String The 'sourceid' column for the 'invoiceitemadjustment' table.
sourcetype String The 'sourcetype' column for the 'invoiceitemadjustment' table.
transferredtoaccounting String The 'transferredtoaccounting' column for the 'invoiceitemadjustment' table.
invoiceid String The 'invoiceid' column for the 'invoiceitemadjustment' table.
adjustmentnumber String The 'adjustmentnumber' column for the 'invoiceitemadjustment' table.
salestaxpayableaccountingcodeid String The 'salestaxpayableaccountingcodeid' column for the 'invoiceitemadjustment' table.
createdbyid String The 'createdbyid' column for the 'invoiceitemadjustment' table.
referenceid String The 'referenceid' column for the 'invoiceitemadjustment' table.
servicestartdate Date The 'servicestartdate' column for the 'invoiceitemadjustment' table.
adjustmentdate Date The 'adjustmentdate' column for the 'invoiceitemadjustment' table.
invoicenumber String The 'invoicenumber' column for the 'invoiceitemadjustment' table.
journalentryid String The 'journalentryid' column for the 'invoiceitemadjustment' table.
taxationitemid String The 'taxationitemid' column for the 'invoiceitemadjustment' table.
cancelleddate Datetime The 'cancelleddate' column for the 'invoiceitemadjustment' table.
status String The 'status' column for the 'invoiceitemadjustment' table.
comment String The 'comment' column for the 'invoiceitemadjustment' table.
serviceenddate Date The 'serviceenddate' column for the 'invoiceitemadjustment' table.
updatedbyid String The 'updatedbyid' column for the 'invoiceitemadjustment' table.
amount Decimal The 'amount' column for the 'invoiceitemadjustment' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'invoiceitemadjustment' table.
invoiceitemid String The 'invoiceitemid' column for the 'invoiceitemadjustment' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'invoiceitemadjustment' table.
reasoncode String The 'reasoncode' column for the 'invoiceitemadjustment' table.
invoiceitemname String The 'invoiceitemname' column for the 'invoiceitemadjustment' table.
type String The 'type' column for the 'invoiceitemadjustment' table.
createddate Datetime The 'createddate' column for the 'invoiceitemadjustment' table.
id String The 'id' column for the 'invoiceitemadjustment' table.
taxableitemsnapshotid String The 'taxableitemsnapshotid' column for the 'invoiceitemadjustment' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'invoiceitemadjustment' table.

Zuora Connector for CData Sync

InvoicePayment

A payment that is applied to an invoice.

Columns

Name Type Description
updateddate Datetime The 'updateddate' column for the 'invoicepayment' table.
updatedbyid String The 'updatedbyid' column for the 'invoicepayment' table.
amount Decimal The 'amount' column for the 'invoicepayment' table.
paymentid String The 'paymentid' column for the 'invoicepayment' table.
refundamount Decimal The 'refundamount' column for the 'invoicepayment' table.
invoiceid String The 'invoiceid' column for the 'invoicepayment' table.
cashaccountingcodeid String The 'cashaccountingcodeid' column for the 'invoicepayment' table.
createdbyid String The 'createdbyid' column for the 'invoicepayment' table.
createddate Datetime The 'createddate' column for the 'invoicepayment' table.
id String The 'id' column for the 'invoicepayment' table.
journalentryid String The 'journalentryid' column for the 'invoicepayment' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'invoicepayment' table.

Zuora Connector for CData Sync

JournalEntry

A journal entry.

Columns

Name Type Description
status String The 'status' column for the 'journalentry' table.
transactiontype String The 'transactiontype' column for the 'journalentry' table.
transferredby String The 'transferredby' column for the 'journalentry' table.
updateddate Datetime The 'updateddate' column for the 'journalentry' table.
updatedbyid String The 'updatedbyid' column for the 'journalentry' table.
transferredtoaccounting String The 'transferredtoaccounting' column for the 'journalentry' table.
product_s String The 'product__s' column for the 'journalentry' table.
createdbyid String The 'createdbyid' column for the 'journalentry' table.
number String The 'number' column for the 'journalentry' table.
currency String The 'currency' column for the 'journalentry' table.
createddate Datetime The 'createddate' column for the 'journalentry' table.
transferdate Datetime The 'transferdate' column for the 'journalentry' table.
journalentrydate Date The 'journalentrydate' column for the 'journalentry' table.
homecurrency String The 'homecurrency' column for the 'journalentry' table.
id String The 'id' column for the 'journalentry' table.
accountingperiodid String The 'accountingperiodid' column for the 'journalentry' table.
entity_s String The 'entity__s' column for the 'journalentry' table.
notes String The 'notes' column for the 'journalentry' table.
journalrunid String The 'journalrunid' column for the 'journalentry' table.
transactioncount String The 'transactioncount' column for the 'journalentry' table.

Zuora Connector for CData Sync

JournalEntryItem

A line item in a journal entry.

Columns

Name Type Description
updateddate Datetime The 'updateddate' column for the 'journalentryitem' table.
updatedbyid String The 'updatedbyid' column for the 'journalentryitem' table.
amount Decimal The 'amount' column for the 'journalentryitem' table.
type String The 'type' column for the 'journalentryitem' table.
amounthomecurrency Decimal The 'amounthomecurrency' column for the 'journalentryitem' table.
accountingcodeid String The 'accountingcodeid' column for the 'journalentryitem' table.
createdbyid String The 'createdbyid' column for the 'journalentryitem' table.
currency String The 'currency' column for the 'journalentryitem' table.
createddate Datetime The 'createddate' column for the 'journalentryitem' table.
homecurrency String The 'homecurrency' column for the 'journalentryitem' table.
id String The 'id' column for the 'journalentryitem' table.
journalentryid String The 'journalentryid' column for the 'journalentryitem' table.

Zuora Connector for CData Sync

JournalRun

A journal run.

Columns

Name Type Description
status String The 'status' column for the 'journalrun' table.
targetstartdate Date The 'targetstartdate' column for the 'journalrun' table.
processenddatetime Datetime The 'processenddatetime' column for the 'journalrun' table.
targetdatetype String The 'targetdatetype' column for the 'journalrun' table.
updateddate Datetime The 'updateddate' column for the 'journalrun' table.
targetenddate Date The 'targetenddate' column for the 'journalrun' table.
updatedbyid String The 'updatedbyid' column for the 'journalrun' table.
totaljournalentrycount String The 'totaljournalentrycount' column for the 'journalrun' table.
createdbyid String The 'createdbyid' column for the 'journalrun' table.
number String The 'number' column for the 'journalrun' table.
createddate Datetime The 'createddate' column for the 'journalrun' table.
id String The 'id' column for the 'journalrun' table.
processstartdatetime Datetime The 'processstartdatetime' column for the 'journalrun' table.

Zuora Connector for CData Sync

OrderAction

An order action that is applied to a subscription.

Columns

Name Type Description
currenttermperiodtype String The 'currenttermperiodtype' column for the 'orderaction' table.
updateddate Datetime The 'updateddate' column for the 'orderaction' table.
autorenew Bool The 'autorenew' column for the 'orderaction' table.
renewaltermperiodtype String The 'renewaltermperiodtype' column for the 'orderaction' table.
serviceactivationdate Date The 'serviceactivationdate' column for the 'orderaction' table.
resumedate Date The 'resumedate' column for the 'orderaction' table.
suspenddate Date The 'suspenddate' column for the 'orderaction' table.
termtype String The 'termtype' column for the 'orderaction' table.
renewsetting String The 'renewsetting' column for the 'orderaction' table.
contracteffectivedate Date The 'contracteffectivedate' column for the 'orderaction' table.
subscriptionversionamendmentid String The 'subscriptionversionamendmentid' column for the 'orderaction' table.
customeracceptancedate Date The 'customeracceptancedate' column for the 'orderaction' table.
subscriptionid String The 'subscriptionid' column for the 'orderaction' table.
createdbyid String The 'createdbyid' column for the 'orderaction' table.
currentterm String The 'currentterm' column for the 'orderaction' table.
cancellationpolicy String The 'cancellationpolicy' column for the 'orderaction' table.
cancellationeffectivedate Date The 'cancellationeffectivedate' column for the 'orderaction' table.
updatedbyid String The 'updatedbyid' column for the 'orderaction' table.
sequence String The 'sequence' column for the 'orderaction' table.
orderid String The 'orderid' column for the 'orderaction' table.
type String The 'type' column for the 'orderaction' table.
termstartdate Date The 'termstartdate' column for the 'orderaction' table.
createddate Datetime The 'createddate' column for the 'orderaction' table.
renewalterm String The 'renewalterm' column for the 'orderaction' table.
id String The 'id' column for the 'orderaction' table.

Zuora Connector for CData Sync

OrderElp

An extended list price metric for an order action.

Columns

Name Type Description
rateplanchargeid String The 'rateplanchargeid' column for the 'orderelp' table.
subscriptionownerid String The 'subscriptionownerid' column for the 'orderelp' table.
updateddate Datetime The 'updateddate' column for the 'orderelp' table.
updatedbyid String The 'updatedbyid' column for the 'orderelp' table.
orderactionid String The 'orderactionid' column for the 'orderelp' table.
tax Decimal The 'tax' column for the 'orderelp' table.
term String The 'term' column for the 'orderelp' table.
enddate Date The 'enddate' column for the 'orderelp' table.
generatedreason String The 'generatedreason' column for the 'orderelp' table.
startdate Date The 'startdate' column for the 'orderelp' table.
type String The 'type' column for the 'orderelp' table.
createdbyid String The 'createdbyid' column for the 'orderelp' table.
createddate Datetime The 'createddate' column for the 'orderelp' table.
value Decimal The 'value' column for the 'orderelp' table.
id String The 'id' column for the 'orderelp' table.
invoiceownerid String The 'invoiceownerid' column for the 'orderelp' table.
orderitemid String The 'orderitemid' column for the 'orderelp' table.

Zuora Connector for CData Sync

OrderItem

An order item.

Columns

Name Type Description
startdate Date The 'startdate' column for the 'orderitem' table.
rateplanchargeid String The 'rateplanchargeid' column for the 'orderitem' table.
createdbyid String The 'createdbyid' column for the 'orderitem' table.
updateddate Datetime The 'updateddate' column for the 'orderitem' table.
updatedbyid String The 'updatedbyid' column for the 'orderitem' table.
createddate Datetime The 'createddate' column for the 'orderitem' table.
orderactionid String The 'orderactionid' column for the 'orderitem' table.
quantity Decimal The 'quantity' column for the 'orderitem' table.
id String The 'id' column for the 'orderitem' table.
enddate Date The 'enddate' column for the 'orderitem' table.

Zuora Connector for CData Sync

OrderMrr

A monthly recurring revenue metric for an order action.

Columns

Name Type Description
rateplanchargeid String The 'rateplanchargeid' column for the 'ordermrr' table.
subscriptionownerid String The 'subscriptionownerid' column for the 'ordermrr' table.
updateddate Datetime The 'updateddate' column for the 'ordermrr' table.
updatedbyid String The 'updatedbyid' column for the 'ordermrr' table.
orderactionid String The 'orderactionid' column for the 'ordermrr' table.
discountchargeid String The 'discountchargeid' column for the 'ordermrr' table.
term String The 'term' column for the 'ordermrr' table.
enddate Date The 'enddate' column for the 'ordermrr' table.
generatedreason String The 'generatedreason' column for the 'ordermrr' table.
startdate Date The 'startdate' column for the 'ordermrr' table.
type String The 'type' column for the 'ordermrr' table.
createdbyid String The 'createdbyid' column for the 'ordermrr' table.
createddate Datetime The 'createddate' column for the 'ordermrr' table.
value Decimal The 'value' column for the 'ordermrr' table.
id String The 'id' column for the 'ordermrr' table.
invoiceownerid String The 'invoiceownerid' column for the 'ordermrr' table.
orderitemid String The 'orderitemid' column for the 'ordermrr' table.

Zuora Connector for CData Sync

OrderQuantity

A quantity metric for an order action.

Columns

Name Type Description
rateplanchargeid String The 'rateplanchargeid' column for the 'orderquantity' table.
subscriptionownerid String The 'subscriptionownerid' column for the 'orderquantity' table.
updateddate Datetime The 'updateddate' column for the 'orderquantity' table.
updatedbyid String The 'updatedbyid' column for the 'orderquantity' table.
orderactionid String The 'orderactionid' column for the 'orderquantity' table.
term String The 'term' column for the 'orderquantity' table.
enddate Date The 'enddate' column for the 'orderquantity' table.
generatedreason String The 'generatedreason' column for the 'orderquantity' table.
startdate Date The 'startdate' column for the 'orderquantity' table.
createdbyid String The 'createdbyid' column for the 'orderquantity' table.
createddate Datetime The 'createddate' column for the 'orderquantity' table.
value Decimal The 'value' column for the 'orderquantity' table.
id String The 'id' column for the 'orderquantity' table.
invoiceownerid String The 'invoiceownerid' column for the 'orderquantity' table.
orderitemid String The 'orderitemid' column for the 'orderquantity' table.

Zuora Connector for CData Sync

Orders

Each row of this table represents an order.

Columns

Name Type Description
status String The 'status' column for the 'orders' table.
createdbymigration Bool The 'createdbymigration' column for the 'orders' table.
accountid String The 'accountid' column for the 'orders' table.
description String The 'description' column for the 'orders' table.
createdbyid String The 'createdbyid' column for the 'orders' table.
updateddate Datetime The 'updateddate' column for the 'orders' table.
updatedbyid String The 'updatedbyid' column for the 'orders' table.
createddate Datetime The 'createddate' column for the 'orders' table.
ordernumber String The 'ordernumber' column for the 'orders' table.
id String The 'id' column for the 'orders' table.
orderdate Date The 'orderdate' column for the 'orders' table.

Zuora Connector for CData Sync

OrderTcb

A total contracted billing metric for an order action.

Columns

Name Type Description
rateplanchargeid String The 'rateplanchargeid' column for the 'ordertcb' table.
subscriptionownerid String The 'subscriptionownerid' column for the 'ordertcb' table.
updateddate Datetime The 'updateddate' column for the 'ordertcb' table.
updatedbyid String The 'updatedbyid' column for the 'ordertcb' table.
orderactionid String The 'orderactionid' column for the 'ordertcb' table.
tax Decimal The 'tax' column for the 'ordertcb' table.
discountchargeid String The 'discountchargeid' column for the 'ordertcb' table.
term String The 'term' column for the 'ordertcb' table.
enddate Date The 'enddate' column for the 'ordertcb' table.
generatedreason String The 'generatedreason' column for the 'ordertcb' table.
startdate Date The 'startdate' column for the 'ordertcb' table.
type String The 'type' column for the 'ordertcb' table.
createdbyid String The 'createdbyid' column for the 'ordertcb' table.
createddate Datetime The 'createddate' column for the 'ordertcb' table.
value Decimal The 'value' column for the 'ordertcb' table.
id String The 'id' column for the 'ordertcb' table.
invoiceownerid String The 'invoiceownerid' column for the 'ordertcb' table.
orderitemid String The 'orderitemid' column for the 'ordertcb' table.

Zuora Connector for CData Sync

OrderTcv

A total contract value metric for an order action.

Columns

Name Type Description
rateplanchargeid String The 'rateplanchargeid' column for the 'ordertcv' table.
subscriptionownerid String The 'subscriptionownerid' column for the 'ordertcv' table.
updateddate Datetime The 'updateddate' column for the 'ordertcv' table.
updatedbyid String The 'updatedbyid' column for the 'ordertcv' table.
orderactionid String The 'orderactionid' column for the 'ordertcv' table.
discountchargeid String The 'discountchargeid' column for the 'ordertcv' table.
term String The 'term' column for the 'ordertcv' table.
enddate Date The 'enddate' column for the 'ordertcv' table.
generatedreason String The 'generatedreason' column for the 'ordertcv' table.
startdate Date The 'startdate' column for the 'ordertcv' table.
type String The 'type' column for the 'ordertcv' table.
createdbyid String The 'createdbyid' column for the 'ordertcv' table.
createddate Datetime The 'createddate' column for the 'ordertcv' table.
value Decimal The 'value' column for the 'ordertcv' table.
id String The 'id' column for the 'ordertcv' table.
invoiceownerid String The 'invoiceownerid' column for the 'ordertcv' table.
orderitemid String The 'orderitemid' column for the 'ordertcv' table.

Zuora Connector for CData Sync

Payment

Each row of this table represents a payment.

Columns

Name Type Description
accountid String The 'accountid' column for the 'payment' table.
accountingcode String The 'accountingcode' column for the 'payment' table.
paymentmethodid String The 'paymentmethodid' column for the 'payment' table.
updateddate Datetime The 'updateddate' column for the 'payment' table.
markedforsubmissionon Datetime The 'markedforsubmissionon' column for the 'payment' table.
transferredtoaccounting String The 'transferredtoaccounting' column for the 'payment' table.
appliedcreditbalanceamount Decimal The 'appliedcreditbalanceamount' column for the 'payment' table.
referencedpaymentid String The 'referencedpaymentid' column for the 'payment' table.
softdescriptor String The 'softdescriptor' column for the 'payment' table.
source String The 'source' column for the 'payment' table.
secondpaymentreferenceid String The 'secondpaymentreferenceid' column for the 'payment' table.
gatewayreconciliationreason String The 'gatewayreconciliationreason' column for the 'payment' table.
gatewaystate String The 'gatewaystate' column for the 'payment' table.
createdbyid String The 'createdbyid' column for the 'payment' table.
referenceid String The 'referenceid' column for the 'payment' table.
softdescriptorphone String The 'softdescriptorphone' column for the 'payment' table.
gateway String The 'gateway' column for the 'payment' table.
currency String The 'currency' column for the 'payment' table.
gatewayreconciliationstatus String The 'gatewayreconciliationstatus' column for the 'payment' table.
authtransactionid String The 'authtransactionid' column for the 'payment' table.
bankidentificationnumber String The 'bankidentificationnumber' column for the 'payment' table.
unappliedamount Decimal The 'unappliedamount' column for the 'payment' table.
cancelledon Datetime The 'cancelledon' column for the 'payment' table.
gatewayresponsecode String The 'gatewayresponsecode' column for the 'payment' table.
gatewayresponse String The 'gatewayresponse' column for the 'payment' table.
status String The 'status' column for the 'payment' table.
comment String The 'comment' column for the 'payment' table.
retrynumber_c String The 'retrynumber__c' column for the 'payment' table.
submittedon Datetime The 'submittedon' column for the 'payment' table.
gatewayorderid String The 'gatewayorderid' column for the 'payment' table.
payoutid String The 'payoutid' column for the 'payment' table.
updatedbyid String The 'updatedbyid' column for the 'payment' table.
amount Decimal The 'amount' column for the 'payment' table.
appliedamount Decimal The 'appliedamount' column for the 'payment' table.
sourcename String The 'sourcename' column for the 'payment' table.
refundamount Decimal The 'refundamount' column for the 'payment' table.
type String The 'type' column for the 'payment' table.
paymentmethodsnapshotid String The 'paymentmethodsnapshotid' column for the 'payment' table.
settledon Datetime The 'settledon' column for the 'payment' table.
createddate Datetime The 'createddate' column for the 'payment' table.
id String The 'id' column for the 'payment' table.
paymentnumber String The 'paymentnumber' column for the 'payment' table.
effectivedate Date The 'effectivedate' column for the 'payment' table.
retrystatus_c String The 'retrystatus__c' column for the 'payment' table.

Zuora Connector for CData Sync

PaymentApplication

A payment that is applied to an invoice or a debit memo.

Columns

Name Type Description
debitmemoid String The 'debitmemoid' column for the 'paymentapplication' table.
paymentapplicationstatus String The 'paymentapplicationstatus' column for the 'paymentapplication' table.
accountid String The 'accountid' column for the 'paymentapplication' table.
updateddate Datetime The 'updateddate' column for the 'paymentapplication' table.
updatedbyid String The 'updatedbyid' column for the 'paymentapplication' table.
paymentid String The 'paymentid' column for the 'paymentapplication' table.
invoiceid String The 'invoiceid' column for the 'paymentapplication' table.
billingdocumentownerid String The 'billingdocumentownerid' column for the 'paymentapplication' table.
cashaccountingcodeid String The 'cashaccountingcodeid' column for the 'paymentapplication' table.
createdbyid String The 'createdbyid' column for the 'paymentapplication' table.
applyamount Decimal The 'applyamount' column for the 'paymentapplication' table.
unappliedpaymentaccountingcodeid String The 'unappliedpaymentaccountingcodeid' column for the 'paymentapplication' table.
createddate Datetime The 'createddate' column for the 'paymentapplication' table.
id String The 'id' column for the 'paymentapplication' table.
journalentryid String The 'journalentryid' column for the 'paymentapplication' table.
applicationgroupid String The 'applicationgroupid' column for the 'paymentapplication' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'paymentapplication' table.
effectivedate Date The 'effectivedate' column for the 'paymentapplication' table.

Zuora Connector for CData Sync

PaymentApplicationItem

A payment that is applied to a line item in an invoice or a line item in a debit memo.

Columns

Name Type Description
updateddate Datetime The 'updateddate' column for the 'paymentapplicationitem' table.
updatedbyid String The 'updatedbyid' column for the 'paymentapplicationitem' table.
amount Decimal The 'amount' column for the 'paymentapplicationitem' table.
invoiceitemid String The 'invoiceitemid' column for the 'paymentapplicationitem' table.
debitmemoitemid String The 'debitmemoitemid' column for the 'paymentapplicationitem' table.
cashaccountingcodeid String The 'cashaccountingcodeid' column for the 'paymentapplicationitem' table.
paymentapplicationid String The 'paymentapplicationid' column for the 'paymentapplicationitem' table.
createdbyid String The 'createdbyid' column for the 'paymentapplicationitem' table.
unappliedpaymentaccountingcodeid String The 'unappliedpaymentaccountingcodeid' column for the 'paymentapplicationitem' table.
createddate Datetime The 'createddate' column for the 'paymentapplicationitem' table.
debittaxationitemid String The 'debittaxationitemid' column for the 'paymentapplicationitem' table.
id String The 'id' column for the 'paymentapplicationitem' table.
journalentryid String The 'journalentryid' column for the 'paymentapplicationitem' table.
taxationitemid String The 'taxationitemid' column for the 'paymentapplicationitem' table.
applicationgroupid String The 'applicationgroupid' column for the 'paymentapplicationitem' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'paymentapplicationitem' table.
effectivedate Date The 'effectivedate' column for the 'paymentapplicationitem' table.

Zuora Connector for CData Sync

PaymentGatewayReconciliationEventLog

An event that was processed by a payment reconciliation job.

Columns

Name Type Description
gatewayreferenceid String The 'gatewayreferenceid' column for the 'paymentgatewayreconciliationeventlog' table.
eventdate Datetime The 'eventdate' column for the 'paymentgatewayreconciliationeventlog' table.
amount Decimal The 'amount' column for the 'paymentgatewayreconciliationeventlog' table.
gatewayreasonmessage String The 'gatewayreasonmessage' column for the 'paymentgatewayreconciliationeventlog' table.
eventtype String The 'eventtype' column for the 'paymentgatewayreconciliationeventlog' table.
updateddate Datetime The 'updateddate' column for the 'paymentgatewayreconciliationeventlog' table.
createdgatewayreferenceid String The 'createdgatewayreferenceid' column for the 'paymentgatewayreconciliationeventlog' table.
createdgatewaysecondreferenceid String The 'createdgatewaysecondreferenceid' column for the 'paymentgatewayreconciliationeventlog' table.
gatewayreasoncode String The 'gatewayreasoncode' column for the 'paymentgatewayreconciliationeventlog' table.
paymentreconciliationjobid String The 'paymentreconciliationjobid' column for the 'paymentgatewayreconciliationeventlog' table.
createddate Datetime The 'createddate' column for the 'paymentgatewayreconciliationeventlog' table.
id String The 'id' column for the 'paymentgatewayreconciliationeventlog' table.
gatewayrawrecord String The 'gatewayrawrecord' column for the 'paymentgatewayreconciliationeventlog' table.
gatewaysecondreferenceid String The 'gatewaysecondreferenceid' column for the 'paymentgatewayreconciliationeventlog' table.

Zuora Connector for CData Sync

PaymentMethod

A payment method.

Columns

Name Type Description
bankname String The 'bankname' column for the 'paymentmethod' table.
secondtokenid String The 'secondtokenid' column for the 'paymentmethod' table.
streetname String The 'streetname' column for the 'paymentmethod' table.
accountid String The 'accountid' column for the 'paymentmethod' table.
email String The 'email' column for the 'paymentmethod' table.
mandateid String The 'mandateid' column for the 'paymentmethod' table.
updateddate Datetime The 'updateddate' column for the 'paymentmethod' table.
achaccountnumbermask String The 'achaccountnumbermask' column for the 'paymentmethod' table.
creditcardexpirationmonth String The 'creditcardexpirationmonth' column for the 'paymentmethod' table.
creditcardexpirationyear String The 'creditcardexpirationyear' column for the 'paymentmethod' table.
bankstreetnumber String The 'bankstreetnumber' column for the 'paymentmethod' table.
creditcardholdername String The 'creditcardholdername' column for the 'paymentmethod' table.
name String The 'name' column for the 'paymentmethod' table.
creditcardaddress2 String The 'creditcardaddress2' column for the 'paymentmethod' table.
paymentmethodstatus String The 'paymentmethodstatus' column for the 'paymentmethod' table.
companyname String The 'companyname' column for the 'paymentmethod' table.
creditcardaddress1 String The 'creditcardaddress1' column for the 'paymentmethod' table.
creditcardcity String The 'creditcardcity' column for the 'paymentmethod' table.
createdbyid String The 'createdbyid' column for the 'paymentmethod' table.
paymentretrywindow String The 'paymentretrywindow' column for the 'paymentmethod' table.
banktransfertype String The 'banktransfertype' column for the 'paymentmethod' table.
streetnumber String The 'streetnumber' column for the 'paymentmethod' table.
achabacode String The 'achabacode' column for the 'paymentmethod' table.
bankbranchcode String The 'bankbranchcode' column for the 'paymentmethod' table.
achbankname String The 'achbankname' column for the 'paymentmethod' table.
banktransferaccounttype String The 'banktransferaccounttype' column for the 'paymentmethod' table.
bankpostalcode String The 'bankpostalcode' column for the 'paymentmethod' table.
iban String The 'iban' column for the 'paymentmethod' table.
bankstreetname String The 'bankstreetname' column for the 'paymentmethod' table.
mandatereceived String The 'mandatereceived' column for the 'paymentmethod' table.
bankcheckdigit String The 'bankcheckdigit' column for the 'paymentmethod' table.
city String The 'city' column for the 'paymentmethod' table.
mandatecreationdate Date The 'mandatecreationdate' column for the 'paymentmethod' table.
lastfailedsaletransactiondate Date The 'lastfailedsaletransactiondate' column for the 'paymentmethod' table.
active Bool The 'active' column for the 'paymentmethod' table.
existingmandate String The 'existingmandate' column for the 'paymentmethod' table.
achcountry String The 'achcountry' column for the 'paymentmethod' table.
state String The 'state' column for the 'paymentmethod' table.
achaddress1 String The 'achaddress1' column for the 'paymentmethod' table.
createddate Datetime The 'createddate' column for the 'paymentmethod' table.
country String The 'country' column for the 'paymentmethod' table.
creditcardpostalcode String The 'creditcardpostalcode' column for the 'paymentmethod' table.
id String The 'id' column for the 'paymentmethod' table.
lastname String The 'lastname' column for the 'paymentmethod' table.
achaccountname String The 'achaccountname' column for the 'paymentmethod' table.
achstate String The 'achstate' column for the 'paymentmethod' table.
achaddress2 String The 'achaddress2' column for the 'paymentmethod' table.
paypalpreapprovalkey String The 'paypalpreapprovalkey' column for the 'paymentmethod' table.
creditcardstate String The 'creditcardstate' column for the 'paymentmethod' table.
banktransferaccountnumbermask String The 'banktransferaccountnumbermask' column for the 'paymentmethod' table.
numconsecutivefailures String The 'numconsecutivefailures' column for the 'paymentmethod' table.
paypaltype String The 'paypaltype' column for the 'paymentmethod' table.
maxconsecutivepaymentfailures String The 'maxconsecutivepaymentfailures' column for the 'paymentmethod' table.
postalcode String The 'postalcode' column for the 'paymentmethod' table.
creditcardcountry String The 'creditcardcountry' column for the 'paymentmethod' table.
businessidentificationcode String The 'businessidentificationcode' column for the 'paymentmethod' table.
achcity String The 'achcity' column for the 'paymentmethod' table.
achpostalcode String The 'achpostalcode' column for the 'paymentmethod' table.
mandateupdatedate Date The 'mandateupdatedate' column for the 'paymentmethod' table.
creditcardmasknumber String The 'creditcardmasknumber' column for the 'paymentmethod' table.
mandatestatus String The 'mandatestatus' column for the 'paymentmethod' table.
phone String The 'phone' column for the 'paymentmethod' table.
bankidentificationnumber String The 'bankidentificationnumber' column for the 'paymentmethod' table.
iscompany Bool The 'iscompany' column for the 'paymentmethod' table.
devicesessionid String The 'devicesessionid' column for the 'paymentmethod' table.
totalnumberofprocessedpayments String The 'totalnumberofprocessedpayments' column for the 'paymentmethod' table.
tokenid String The 'tokenid' column for the 'paymentmethod' table.
usedefaultretryrule Bool The 'usedefaultretryrule' column for the 'paymentmethod' table.
lasttransactiondatetime Datetime The 'lasttransactiondatetime' column for the 'paymentmethod' table.
lasttransactionstatus String The 'lasttransactionstatus' column for the 'paymentmethod' table.
bankcity String The 'bankcity' column for the 'paymentmethod' table.
firstname String The 'firstname' column for the 'paymentmethod' table.
paypalemail String The 'paypalemail' column for the 'paymentmethod' table.
updatedbyid String The 'updatedbyid' column for the 'paymentmethod' table.
bankcode String The 'bankcode' column for the 'paymentmethod' table.
creditcardtype String The 'creditcardtype' column for the 'paymentmethod' table.
paypalbaid String The 'paypalbaid' column for the 'paymentmethod' table.
mandatereason String The 'mandatereason' column for the 'paymentmethod' table.
achaccounttype String The 'achaccounttype' column for the 'paymentmethod' table.
banktransferaccountname String The 'banktransferaccountname' column for the 'paymentmethod' table.
type String The 'type' column for the 'paymentmethod' table.
totalnumberoferrorpayments String The 'totalnumberoferrorpayments' column for the 'paymentmethod' table.
ipaddress String The 'ipaddress' column for the 'paymentmethod' table.
identitynumber String The 'identitynumber' column for the 'paymentmethod' table.

Zuora Connector for CData Sync

PaymentMethodSnapshot

A copy of the payment method that was used in a transaction.

Columns

Name Type Description
bankname String The 'bankname' column for the 'paymentmethodsnapshot' table.
secondtokenid String The 'secondtokenid' column for the 'paymentmethodsnapshot' table.
streetname String The 'streetname' column for the 'paymentmethodsnapshot' table.
accountid String The 'accountid' column for the 'paymentmethodsnapshot' table.
email String The 'email' column for the 'paymentmethodsnapshot' table.
mandateid String The 'mandateid' column for the 'paymentmethodsnapshot' table.
paymentmethodid String The 'paymentmethodid' column for the 'paymentmethodsnapshot' table.
updateddate Datetime The 'updateddate' column for the 'paymentmethodsnapshot' table.
achaccountnumbermask String The 'achaccountnumbermask' column for the 'paymentmethodsnapshot' table.
creditcardexpirationmonth String The 'creditcardexpirationmonth' column for the 'paymentmethodsnapshot' table.
creditcardexpirationyear String The 'creditcardexpirationyear' column for the 'paymentmethodsnapshot' table.
bankstreetnumber String The 'bankstreetnumber' column for the 'paymentmethodsnapshot' table.
creditcardholdername String The 'creditcardholdername' column for the 'paymentmethodsnapshot' table.
name String The 'name' column for the 'paymentmethodsnapshot' table.
creditcardaddress2 String The 'creditcardaddress2' column for the 'paymentmethodsnapshot' table.
paymentmethodstatus String The 'paymentmethodstatus' column for the 'paymentmethodsnapshot' table.
companyname String The 'companyname' column for the 'paymentmethodsnapshot' table.
creditcardaddress1 String The 'creditcardaddress1' column for the 'paymentmethodsnapshot' table.
creditcardcity String The 'creditcardcity' column for the 'paymentmethodsnapshot' table.
paymentretrywindow String The 'paymentretrywindow' column for the 'paymentmethodsnapshot' table.
banktransfertype String The 'banktransfertype' column for the 'paymentmethodsnapshot' table.
streetnumber String The 'streetnumber' column for the 'paymentmethodsnapshot' table.
achabacode String The 'achabacode' column for the 'paymentmethodsnapshot' table.
bankbranchcode String The 'bankbranchcode' column for the 'paymentmethodsnapshot' table.
achbankname String The 'achbankname' column for the 'paymentmethodsnapshot' table.
banktransferaccounttype String The 'banktransferaccounttype' column for the 'paymentmethodsnapshot' table.
bankpostalcode String The 'bankpostalcode' column for the 'paymentmethodsnapshot' table.
iban String The 'iban' column for the 'paymentmethodsnapshot' table.
bankstreetname String The 'bankstreetname' column for the 'paymentmethodsnapshot' table.
mandatereceived String The 'mandatereceived' column for the 'paymentmethodsnapshot' table.
bankcheckdigit String The 'bankcheckdigit' column for the 'paymentmethodsnapshot' table.
city String The 'city' column for the 'paymentmethodsnapshot' table.
mandatecreationdate Date The 'mandatecreationdate' column for the 'paymentmethodsnapshot' table.
lastfailedsaletransactiondate Date The 'lastfailedsaletransactiondate' column for the 'paymentmethodsnapshot' table.
existingmandate String The 'existingmandate' column for the 'paymentmethodsnapshot' table.
state String The 'state' column for the 'paymentmethodsnapshot' table.
createddate Datetime The 'createddate' column for the 'paymentmethodsnapshot' table.
country String The 'country' column for the 'paymentmethodsnapshot' table.
creditcardpostalcode String The 'creditcardpostalcode' column for the 'paymentmethodsnapshot' table.
id String The 'id' column for the 'paymentmethodsnapshot' table.
lastname String The 'lastname' column for the 'paymentmethodsnapshot' table.
achaccountname String The 'achaccountname' column for the 'paymentmethodsnapshot' table.
paypalpreapprovalkey String The 'paypalpreapprovalkey' column for the 'paymentmethodsnapshot' table.
creditcardstate String The 'creditcardstate' column for the 'paymentmethodsnapshot' table.
banktransferaccountnumbermask String The 'banktransferaccountnumbermask' column for the 'paymentmethodsnapshot' table.
numconsecutivefailures String The 'numconsecutivefailures' column for the 'paymentmethodsnapshot' table.
paypaltype String The 'paypaltype' column for the 'paymentmethodsnapshot' table.
maxconsecutivepaymentfailures String The 'maxconsecutivepaymentfailures' column for the 'paymentmethodsnapshot' table.
postalcode String The 'postalcode' column for the 'paymentmethodsnapshot' table.
creditcardcountry String The 'creditcardcountry' column for the 'paymentmethodsnapshot' table.
businessidentificationcode String The 'businessidentificationcode' column for the 'paymentmethodsnapshot' table.
mandateupdatedate Date The 'mandateupdatedate' column for the 'paymentmethodsnapshot' table.
creditcardmasknumber String The 'creditcardmasknumber' column for the 'paymentmethodsnapshot' table.
mandatestatus String The 'mandatestatus' column for the 'paymentmethodsnapshot' table.
phone String The 'phone' column for the 'paymentmethodsnapshot' table.
bankidentificationnumber String The 'bankidentificationnumber' column for the 'paymentmethodsnapshot' table.
iscompany Bool The 'iscompany' column for the 'paymentmethodsnapshot' table.
devicesessionid String The 'devicesessionid' column for the 'paymentmethodsnapshot' table.
totalnumberofprocessedpayments String The 'totalnumberofprocessedpayments' column for the 'paymentmethodsnapshot' table.
tokenid String The 'tokenid' column for the 'paymentmethodsnapshot' table.
usedefaultretryrule Bool The 'usedefaultretryrule' column for the 'paymentmethodsnapshot' table.
lasttransactiondatetime Datetime The 'lasttransactiondatetime' column for the 'paymentmethodsnapshot' table.
lasttransactionstatus String The 'lasttransactionstatus' column for the 'paymentmethodsnapshot' table.
bankcity String The 'bankcity' column for the 'paymentmethodsnapshot' table.
firstname String The 'firstname' column for the 'paymentmethodsnapshot' table.
paypalemail String The 'paypalemail' column for the 'paymentmethodsnapshot' table.
bankcode String The 'bankcode' column for the 'paymentmethodsnapshot' table.
creditcardtype String The 'creditcardtype' column for the 'paymentmethodsnapshot' table.
paypalbaid String The 'paypalbaid' column for the 'paymentmethodsnapshot' table.
mandatereason String The 'mandatereason' column for the 'paymentmethodsnapshot' table.
achaccounttype String The 'achaccounttype' column for the 'paymentmethodsnapshot' table.
banktransferaccountname String The 'banktransferaccountname' column for the 'paymentmethodsnapshot' table.
type String The 'type' column for the 'paymentmethodsnapshot' table.
totalnumberoferrorpayments String The 'totalnumberoferrorpayments' column for the 'paymentmethodsnapshot' table.
ipaddress String The 'ipaddress' column for the 'paymentmethodsnapshot' table.
identitynumber String The 'identitynumber' column for the 'paymentmethodsnapshot' table.

Zuora Connector for CData Sync

PaymentMethodTransactionLog

A transaction from Zuora to the payment gateway associated with a payment method.

Columns

Name Type Description
paymentmethodtype String The 'paymentmethodtype' column for the 'paymentmethodtransactionlog' table.
accountid String The 'accountid' column for the 'paymentmethodtransactionlog' table.
paymentmethodid String The 'paymentmethodid' column for the 'paymentmethodtransactionlog' table.
requeststring String The 'requeststring' column for the 'paymentmethodtransactionlog' table.
gatewaytransactiontype String The 'gatewaytransactiontype' column for the 'paymentmethodtransactionlog' table.
gatewayreasoncode String The 'gatewayreasoncode' column for the 'paymentmethodtransactionlog' table.
transactionid String The 'transactionid' column for the 'paymentmethodtransactionlog' table.
gateway String The 'gateway' column for the 'paymentmethodtransactionlog' table.
gatewayreasoncodedescription String The 'gatewayreasoncodedescription' column for the 'paymentmethodtransactionlog' table.
createddate Datetime The 'createddate' column for the 'paymentmethodtransactionlog' table.
id String The 'id' column for the 'paymentmethodtransactionlog' table.
responsestring String The 'responsestring' column for the 'paymentmethodtransactionlog' table.
transactiondate Datetime The 'transactiondate' column for the 'paymentmethodtransactionlog' table.

Zuora Connector for CData Sync

PaymentPart

An applied or unapplied portion of a payment.

Columns

Name Type Description
debitmemoid String The 'debitmemoid' column for the 'paymentpart' table.
accountid String The 'accountid' column for the 'paymentpart' table.
createdbyid String The 'createdbyid' column for the 'paymentpart' table.
updateddate Datetime The 'updateddate' column for the 'paymentpart' table.
updatedbyid String The 'updatedbyid' column for the 'paymentpart' table.
amount Decimal The 'amount' column for the 'paymentpart' table.
createddate Datetime The 'createddate' column for the 'paymentpart' table.
paymentid String The 'paymentid' column for the 'paymentpart' table.
id String The 'id' column for the 'paymentpart' table.
invoiceid String The 'invoiceid' column for the 'paymentpart' table.
billingdocumentownerid String The 'billingdocumentownerid' column for the 'paymentpart' table.

Zuora Connector for CData Sync

PaymentPartItem

A portion of a payment that is applied to a line item in an invoice or a line item in a debit memo.

Columns

Name Type Description
createdbyid String The 'createdbyid' column for the 'paymentpartitem' table.
updateddate Datetime The 'updateddate' column for the 'paymentpartitem' table.
updatedbyid String The 'updatedbyid' column for the 'paymentpartitem' table.
amount Decimal The 'amount' column for the 'paymentpartitem' table.
paymentpartid String The 'paymentpartid' column for the 'paymentpartitem' table.
createddate Datetime The 'createddate' column for the 'paymentpartitem' table.
debittaxationitemid String The 'debittaxationitemid' column for the 'paymentpartitem' table.
invoiceitemid String The 'invoiceitemid' column for the 'paymentpartitem' table.
debitmemoitemid String The 'debitmemoitemid' column for the 'paymentpartitem' table.
id String The 'id' column for the 'paymentpartitem' table.
taxationitemid String The 'taxationitemid' column for the 'paymentpartitem' table.

Zuora Connector for CData Sync

PaymentReconciliationJob

A payment reconciliation job.

Columns

Name Type Description
status String The 'status' column for the 'paymentreconciliationjob' table.
createddate Datetime The 'createddate' column for the 'paymentreconciliationjob' table.
id String The 'id' column for the 'paymentreconciliationjob' table.
gatewayinstance String The 'gatewayinstance' column for the 'paymentreconciliationjob' table.
jobnumber String The 'jobnumber' column for the 'paymentreconciliationjob' table.
periodstart Datetime The 'periodstart' column for the 'paymentreconciliationjob' table.
periodend Datetime The 'periodend' column for the 'paymentreconciliationjob' table.

Zuora Connector for CData Sync

PaymentReconciliationLog

A reconciled transaction that was processed by a payment reconciliation job.

Columns

Name Type Description
status String The 'status' column for the 'paymentreconciliationlog' table.
paymentgatewayreconciliationeventlogid String The 'paymentgatewayreconciliationeventlogid' column for the 'paymentreconciliationlog' table.
relatedobjectid String The 'relatedobjectid' column for the 'paymentreconciliationlog' table.
createdobjectid String The 'createdobjectid' column for the 'paymentreconciliationlog' table.
updateddate Datetime The 'updateddate' column for the 'paymentreconciliationlog' table.
reasonmessage String The 'reasonmessage' column for the 'paymentreconciliationlog' table.
relatedobjecttype String The 'relatedobjecttype' column for the 'paymentreconciliationlog' table.
createddate Datetime The 'createddate' column for the 'paymentreconciliationlog' table.
createdobjecttype String The 'createdobjecttype' column for the 'paymentreconciliationlog' table.
id String The 'id' column for the 'paymentreconciliationlog' table.
reason String The 'reason' column for the 'paymentreconciliationlog' table.

Zuora Connector for CData Sync

PaymentRun

A payment run.

Columns

Name Type Description
executeddate Datetime The 'executeddate' column for the 'paymentrun' table.
numberofdebitmemosunprocessed String The 'numberofdebitmemosunprocessed' column for the 'paymentrun' table.
autoapplyunappliedpayment Bool The 'autoapplyunappliedpayment' column for the 'paymentrun' table.
numberofdreditmemos String The 'numberofdreditmemos' column for the 'paymentrun' table.
numberofunappliedpayments String The 'numberofunappliedpayments' column for the 'paymentrun' table.
accountid String The 'accountid' column for the 'paymentrun' table.
runtime String The 'runtime' column for the 'paymentrun' table.
updateddate Datetime The 'updateddate' column for the 'paymentrun' table.
consolidatedpayment Bool The 'consolidatedpayment' column for the 'paymentrun' table.
repeatto String The 'repeatto' column for the 'paymentrun' table.
applycreditbalance Bool The 'applycreditbalance' column for the 'paymentrun' table.
collectpayment Bool The 'collectpayment' column for the 'paymentrun' table.
billingrunid String The 'billingrunid' column for the 'paymentrun' table.
createdbyid String The 'createdbyid' column for the 'paymentrun' table.
batch String The 'batch' column for the 'paymentrun' table.
paymentgatewayid String The 'paymentgatewayid' column for the 'paymentrun' table.
currency String The 'currency' column for the 'paymentrun' table.
paymentrunnumber String The 'paymentrunnumber' column for the 'paymentrun' table.
monthlyonday String The 'monthlyonday' column for the 'paymentrun' table.
numberofunprocessed String The 'numberofunprocessed' column for the 'paymentrun' table.
numberofpayments String The 'numberofpayments' column for the 'paymentrun' table.
numberofinvoices String The 'numberofinvoices' column for the 'paymentrun' table.
numberoferrors String The 'numberoferrors' column for the 'paymentrun' table.
status String The 'status' column for the 'paymentrun' table.
billingcycleday String The 'billingcycleday' column for the 'paymentrun' table.
totalexecutiontime String The 'totalexecutiontime' column for the 'paymentrun' table.
updatedbyid String The 'updatedbyid' column for the 'paymentrun' table.
weeklyonday String The 'weeklyonday' column for the 'paymentrun' table.
repeatfrom String The 'repeatfrom' column for the 'paymentrun' table.
enddate Datetime The 'enddate' column for the 'paymentrun' table.
rundate Date The 'rundate' column for the 'paymentrun' table.
numberofcreditbalanceadjustments String The 'numberofcreditbalanceadjustments' column for the 'paymentrun' table.
timezone String The 'timezone' column for the 'paymentrun' table.
targetdate Date The 'targetdate' column for the 'paymentrun' table.
createddate Datetime The 'createddate' column for the 'paymentrun' table.
repeattype String The 'repeattype' column for the 'paymentrun' table.
id String The 'id' column for the 'paymentrun' table.
autoapplycreditmemo Bool The 'autoapplycreditmemo' column for the 'paymentrun' table.
errormessage String The 'errormessage' column for the 'paymentrun' table.
numberofcebitmemos String The 'numberofcebitmemos' column for the 'paymentrun' table.
nextrunon Date The 'nextrunon' column for the 'paymentrun' table.
processpaymentwithclosedpm Bool The 'processpaymentwithclosedpm' column for the 'paymentrun' table.

Zuora Connector for CData Sync

PaymentTransactionLog

A transaction from Zuora to the payment gateway associated with a payment.

Columns

Name Type Description
accountid String The 'accountid' column for the 'paymenttransactionlog' table.
requeststring String The 'requeststring' column for the 'paymenttransactionlog' table.
batchid String The 'batchid' column for the 'paymenttransactionlog' table.
gatewaytransactiontype String The 'gatewaytransactiontype' column for the 'paymenttransactionlog' table.
paymentid String The 'paymentid' column for the 'paymenttransactionlog' table.
cvvresponsecode String The 'cvvresponsecode' column for the 'paymenttransactionlog' table.
gatewayreasoncode String The 'gatewayreasoncode' column for the 'paymenttransactionlog' table.
transactionid String The 'transactionid' column for the 'paymenttransactionlog' table.
avsresponsecode String The 'avsresponsecode' column for the 'paymenttransactionlog' table.
gatewaystate String The 'gatewaystate' column for the 'paymenttransactionlog' table.
gateway String The 'gateway' column for the 'paymenttransactionlog' table.
gatewayreasoncodedescription String The 'gatewayreasoncodedescription' column for the 'paymenttransactionlog' table.
createddate Datetime The 'createddate' column for the 'paymenttransactionlog' table.
id String The 'id' column for the 'paymenttransactionlog' table.
responsestring String The 'responsestring' column for the 'paymenttransactionlog' table.
transactiondate Datetime The 'transactiondate' column for the 'paymenttransactionlog' table.

Zuora Connector for CData Sync

ProcessedUsage

Uploaded usage that has been processed.

Columns

Name Type Description
billingperiodenddate Datetime The 'billingperiodenddate' column for the 'processedusage' table.
createdbyid String The 'createdbyid' column for the 'processedusage' table.
updateddate Datetime The 'updateddate' column for the 'processedusage' table.
updatedbyid String The 'updatedbyid' column for the 'processedusage' table.
amount Decimal The 'amount' column for the 'processedusage' table.
billingperiodstartdate Datetime The 'billingperiodstartdate' column for the 'processedusage' table.
createddate Datetime The 'createddate' column for the 'processedusage' table.
invoiceitemid String The 'invoiceitemid' column for the 'processedusage' table.
usageid String The 'usageid' column for the 'processedusage' table.
id String The 'id' column for the 'processedusage' table.

Zuora Connector for CData Sync

Product

A product in your product catalog.

Columns

Name Type Description
category String The 'category' column for the 'product' table.
description String The 'description' column for the 'product' table.
upgradepathsku_c String The 'upgradepathsku__c' column for the 'product' table.
effectiveenddate Date The 'effectiveenddate' column for the 'product' table.
updateddate Datetime The 'updateddate' column for the 'product' table.
updatedbyid String The 'updatedbyid' column for the 'product' table.
name String The 'name' column for the 'product' table.
downgradepathsku_c String The 'downgradepathsku__c' column for the 'product' table.
createdbyid String The 'createdbyid' column for the 'product' table.
productmanager_c String The 'productmanager__c' column for the 'product' table.
allowfeaturechanges Bool The 'allowfeaturechanges' column for the 'product' table.
createddate Datetime The 'createddate' column for the 'product' table.
id String The 'id' column for the 'product' table.
partnercommission_c String The 'partnercommission__c' column for the 'product' table.
sku String The 'sku' column for the 'product' table.
effectivestartdate Date The 'effectivestartdate' column for the 'product' table.

Zuora Connector for CData Sync

ProductFeature

A feature in your product catalog.

Columns

Name Type Description
featureid String The 'featureid' column for the 'productfeature' table.
createdbyid String The 'createdbyid' column for the 'productfeature' table.
updateddate Datetime The 'updateddate' column for the 'productfeature' table.
updatedbyid String The 'updatedbyid' column for the 'productfeature' table.
createddate Datetime The 'createddate' column for the 'productfeature' table.
productid String The 'productid' column for the 'productfeature' table.
id String The 'id' column for the 'productfeature' table.
specialtype_c String The 'specialtype__c' column for the 'productfeature' table.

Zuora Connector for CData Sync

ProductRatePlan

A rate plan in your product catalog.

Columns

Name Type Description
description String The 'description' column for the 'productrateplan' table.
createdbyid String The 'createdbyid' column for the 'productrateplan' table.
effectiveenddate Date The 'effectiveenddate' column for the 'productrateplan' table.
updateddate Datetime The 'updateddate' column for the 'productrateplan' table.
updatedbyid String The 'updatedbyid' column for the 'productrateplan' table.
createddate Datetime The 'createddate' column for the 'productrateplan' table.
productid String The 'productid' column for the 'productrateplan' table.
id String The 'id' column for the 'productrateplan' table.
promotioncode_c String The 'promotioncode__c' column for the 'productrateplan' table.
effectivestartdate Date The 'effectivestartdate' column for the 'productrateplan' table.
name String The 'name' column for the 'productrateplan' table.

Zuora Connector for CData Sync

ProductRatePlanCharge

A charge in your product catalog.

Columns

Name Type Description
discountclassid String The 'discountclassid' column for the 'productrateplancharge' table.
discountlevel String The 'discountlevel' column for the 'productrateplancharge' table.
ratinggroup String The 'ratinggroup' column for the 'productrateplancharge' table.
accountingcode String The 'accountingcode' column for the 'productrateplancharge' table.
specificbillingperiod String The 'specificbillingperiod' column for the 'productrateplancharge' table.
updateddate Datetime The 'updateddate' column for the 'productrateplancharge' table.
adjustmentliabilityaccountingcodeid String The 'adjustmentliabilityaccountingcodeid' column for the 'productrateplancharge' table.
name String The 'name' column for the 'productrateplancharge' table.
billingperiodalignment String The 'billingperiodalignment' column for the 'productrateplancharge' table.
createdbyid String The 'createdbyid' column for the 'productrateplancharge' table.
uptoperiodstype String The 'uptoperiodstype' column for the 'productrateplancharge' table.
revenuerecognitionrulename String The 'revenuerecognitionrulename' column for the 'productrateplancharge' table.
numberofperiod String The 'numberofperiod' column for the 'productrateplancharge' table.
overagecalculationoption String The 'overagecalculationoption' column for the 'productrateplancharge' table.
maxquantity Decimal The 'maxquantity' column for the 'productrateplancharge' table.
enddatecondition String The 'enddatecondition' column for the 'productrateplancharge' table.
taxmode String The 'taxmode' column for the 'productrateplancharge' table.
legacyrevenuereporting Bool The 'legacyrevenuereporting' column for the 'productrateplancharge' table.
weeklybillcycleday String The 'weeklybillcycleday' column for the 'productrateplancharge' table.
billingperiod String The 'billingperiod' column for the 'productrateplancharge' table.
usediscountspecificaccountingcode Bool The 'usediscountspecificaccountingcode' column for the 'productrateplancharge' table.
triggerevent String The 'triggerevent' column for the 'productrateplancharge' table.
billcycletype String The 'billcycletype' column for the 'productrateplancharge' table.
productrateplanid String The 'productrateplanid' column for the 'productrateplancharge' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'productrateplancharge' table.
revrectriggercondition String The 'revrectriggercondition' column for the 'productrateplancharge' table.
pricechangeoption String The 'pricechangeoption' column for the 'productrateplancharge' table.
contractliabilityaccountingcodeid String The 'contractliabilityaccountingcodeid' column for the 'productrateplancharge' table.
uptoperiods String The 'uptoperiods' column for the 'productrateplancharge' table.
createddate Datetime The 'createddate' column for the 'productrateplancharge' table.
id String The 'id' column for the 'productrateplancharge' table.
overageunusedunitscreditoption String The 'overageunusedunitscreditoption' column for the 'productrateplancharge' table.
adjustmentrevenueaccountingcodeid String The 'adjustmentrevenueaccountingcodeid' column for the 'productrateplancharge' table.
taxable Bool The 'taxable' column for the 'productrateplancharge' table.
contractrecognizedrevenueaccountingcodeid String The 'contractrecognizedrevenueaccountingcodeid' column for the 'productrateplancharge' table.
description String The 'description' column for the 'productrateplancharge' table.
includedunits Decimal The 'includedunits' column for the 'productrateplancharge' table.
contractassetaccountingcodeid String The 'contractassetaccountingcodeid' column for the 'productrateplancharge' table.
smoothingmodel String The 'smoothingmodel' column for the 'productrateplancharge' table.
usagerecordratingoption String The 'usagerecordratingoption' column for the 'productrateplancharge' table.
recognizedrevenueaccount String The 'recognizedrevenueaccount' column for the 'productrateplancharge' table.
minquantity Decimal The 'minquantity' column for the 'productrateplancharge' table.
deferredrevenueaccount String The 'deferredrevenueaccount' column for the 'productrateplancharge' table.
taxcode String The 'taxcode' column for the 'productrateplancharge' table.
unbilledreceivablesaccountingcodeid String The 'unbilledreceivablesaccountingcodeid' column for the 'productrateplancharge' table.
billcycleday String The 'billcycleday' column for the 'productrateplancharge' table.
defaultquantity Decimal The 'defaultquantity' column for the 'productrateplancharge' table.
priceincreasepercentage Decimal The 'priceincreasepercentage' column for the 'productrateplancharge' table.
chargemodel String The 'chargemodel' column for the 'productrateplancharge' table.
revreccode String The 'revreccode' column for the 'productrateplancharge' table.
updatedbyid String The 'updatedbyid' column for the 'productrateplancharge' table.
applydiscountto String The 'applydiscountto' column for the 'productrateplancharge' table.
billingtiming String The 'billingtiming' column for the 'productrateplancharge' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'productrateplancharge' table.
listpricebase String The 'listpricebase' column for the 'productrateplancharge' table.
uom String The 'uom' column for the 'productrateplancharge' table.
chargetype String The 'chargetype' column for the 'productrateplancharge' table.
usetenantdefaultforpricechange Bool The 'usetenantdefaultforpricechange' column for the 'productrateplancharge' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'productrateplancharge' table.

Zuora Connector for CData Sync

ProductRatePlanChargeTier

A charge tier in your product catalog.

Columns

Name Type Description
startingunit Decimal The 'startingunit' column for the 'productrateplanchargetier' table.
includedunits Decimal The 'includedunits' column for the 'productrateplanchargetier' table.
tier String The 'tier' column for the 'productrateplanchargetier' table.
updateddate Datetime The 'updateddate' column for the 'productrateplanchargetier' table.
updatedbyid String The 'updatedbyid' column for the 'productrateplanchargetier' table.
overageprice Decimal The 'overageprice' column for the 'productrateplanchargetier' table.
priceformat String The 'priceformat' column for the 'productrateplanchargetier' table.
discountamount Decimal The 'discountamount' column for the 'productrateplanchargetier' table.
active Bool The 'active' column for the 'productrateplanchargetier' table.
productrateplanchargeid String The 'productrateplanchargeid' column for the 'productrateplanchargetier' table.
createdbyid String The 'createdbyid' column for the 'productrateplanchargetier' table.
discountpercentage Decimal The 'discountpercentage' column for the 'productrateplanchargetier' table.
endingunit Decimal The 'endingunit' column for the 'productrateplanchargetier' table.
price Decimal The 'price' column for the 'productrateplanchargetier' table.
currency String The 'currency' column for the 'productrateplanchargetier' table.
createddate Datetime The 'createddate' column for the 'productrateplanchargetier' table.
id String The 'id' column for the 'productrateplanchargetier' table.

Zuora Connector for CData Sync

RatePlan

A rate plan in a subscription.

Columns

Name Type Description
amendmentid String The 'amendmentid' column for the 'rateplan' table.
subscriptionid String The 'subscriptionid' column for the 'rateplan' table.
createdbyid String The 'createdbyid' column for the 'rateplan' table.
updateddate Datetime The 'updateddate' column for the 'rateplan' table.
amendmenttype String The 'amendmenttype' column for the 'rateplan' table.
updatedbyid String The 'updatedbyid' column for the 'rateplan' table.
createddate Datetime The 'createddate' column for the 'rateplan' table.
productrateplanid String The 'productrateplanid' column for the 'rateplan' table.
id String The 'id' column for the 'rateplan' table.
name String The 'name' column for the 'rateplan' table.

Zuora Connector for CData Sync

RatePlanCharge

A charge in a subscription.

Columns

Name Type Description
discountlevel String The 'discountlevel' column for the 'rateplancharge' table.
ratinggroup String The 'ratinggroup' column for the 'rateplancharge' table.
accountingcode String The 'accountingcode' column for the 'rateplancharge' table.
specificbillingperiod String The 'specificbillingperiod' column for the 'rateplancharge' table.
updateddate Datetime The 'updateddate' column for the 'rateplancharge' table.
processedthroughdate Date The 'processedthroughdate' column for the 'rateplancharge' table.
name String The 'name' column for the 'rateplancharge' table.
billingperiodalignment String The 'billingperiodalignment' column for the 'rateplancharge' table.
createdbyid String The 'createdbyid' column for the 'rateplancharge' table.
uptoperiodstype String The 'uptoperiodstype' column for the 'rateplancharge' table.
islastsegment Bool The 'islastsegment' column for the 'rateplancharge' table.
version String The 'version' column for the 'rateplancharge' table.
revenuerecognitionrulename String The 'revenuerecognitionrulename' column for the 'rateplancharge' table.
numberofperiods String The 'numberofperiods' column for the 'rateplancharge' table.
overagecalculationoption String The 'overagecalculationoption' column for the 'rateplancharge' table.
enddatecondition String The 'enddatecondition' column for the 'rateplancharge' table.
weeklybillcycleday String The 'weeklybillcycleday' column for the 'rateplancharge' table.
dtcv Decimal The 'dtcv' column for the 'rateplancharge' table.
billingperiod String The 'billingperiod' column for the 'rateplancharge' table.
effectiveenddate Date The 'effectiveenddate' column for the 'rateplancharge' table.
triggerevent String The 'triggerevent' column for the 'rateplancharge' table.
billcycletype String The 'billcycletype' column for the 'rateplancharge' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'rateplancharge' table.
chargedthroughdate Date The 'chargedthroughdate' column for the 'rateplancharge' table.
triggerdate Date The 'triggerdate' column for the 'rateplancharge' table.
revrectriggercondition String The 'revrectriggercondition' column for the 'rateplancharge' table.
pricechangeoption String The 'pricechangeoption' column for the 'rateplancharge' table.
rateplanid String The 'rateplanid' column for the 'rateplancharge' table.
productrateplanchargeid String The 'productrateplanchargeid' column for the 'rateplancharge' table.
uptoperiods String The 'uptoperiods' column for the 'rateplancharge' table.
createddate Datetime The 'createddate' column for the 'rateplancharge' table.
id String The 'id' column for the 'rateplancharge' table.
overageunusedunitscreditoption String The 'overageunusedunitscreditoption' column for the 'rateplancharge' table.
isprocessed Bool The 'isprocessed' column for the 'rateplancharge' table.
description String The 'description' column for the 'rateplancharge' table.
tcv Decimal The 'tcv' column for the 'rateplancharge' table.
mrr Decimal The 'mrr' column for the 'rateplancharge' table.
segment String The 'segment' column for the 'rateplancharge' table.
billcycleday String The 'billcycleday' column for the 'rateplancharge' table.
dmrc Decimal The 'dmrc' column for the 'rateplancharge' table.
specificenddate Date The 'specificenddate' column for the 'rateplancharge' table.
chargenumber String The 'chargenumber' column for the 'rateplancharge' table.
priceincreasepercentage Decimal The 'priceincreasepercentage' column for the 'rateplancharge' table.
chargemodel String The 'chargemodel' column for the 'rateplancharge' table.
originalid String The 'originalid' column for the 'rateplancharge' table.
revreccode String The 'revreccode' column for the 'rateplancharge' table.
updatedbyid String The 'updatedbyid' column for the 'rateplancharge' table.
applydiscountto String The 'applydiscountto' column for the 'rateplancharge' table.
billingtiming String The 'billingtiming' column for the 'rateplancharge' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'rateplancharge' table.
listpricebase String The 'listpricebase' column for the 'rateplancharge' table.
quantity Decimal The 'quantity' column for the 'rateplancharge' table.
uom String The 'uom' column for the 'rateplancharge' table.
chargetype String The 'chargetype' column for the 'rateplancharge' table.
effectivestartdate Date The 'effectivestartdate' column for the 'rateplancharge' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'rateplancharge' table.

Zuora Connector for CData Sync

RatePlanChargeTier

A charge tier in a subscription.

Columns

Name Type Description
startingunit Decimal The 'startingunit' column for the 'rateplanchargetier' table.
rateplanchargeid String The 'rateplanchargeid' column for the 'rateplanchargetier' table.
includedunits Decimal The 'includedunits' column for the 'rateplanchargetier' table.
tier String The 'tier' column for the 'rateplanchargetier' table.
updateddate Datetime The 'updateddate' column for the 'rateplanchargetier' table.
updatedbyid String The 'updatedbyid' column for the 'rateplanchargetier' table.
overageprice Decimal The 'overageprice' column for the 'rateplanchargetier' table.
priceformat String The 'priceformat' column for the 'rateplanchargetier' table.
discountamount Decimal The 'discountamount' column for the 'rateplanchargetier' table.
createdbyid String The 'createdbyid' column for the 'rateplanchargetier' table.
discountpercentage Decimal The 'discountpercentage' column for the 'rateplanchargetier' table.
endingunit Decimal The 'endingunit' column for the 'rateplanchargetier' table.
price Decimal The 'price' column for the 'rateplanchargetier' table.
currency String The 'currency' column for the 'rateplanchargetier' table.
createddate Datetime The 'createddate' column for the 'rateplanchargetier' table.
id String The 'id' column for the 'rateplanchargetier' table.

Zuora Connector for CData Sync

Refund

Each row of this table represents a refund.

Columns

Name Type Description
accountid String The 'accountid' column for the 'refund' table.
accountingcode String The 'accountingcode' column for the 'refund' table.
paymentmethodid String The 'paymentmethodid' column for the 'refund' table.
secondrefundreferenceid String The 'secondrefundreferenceid' column for the 'refund' table.
updateddate Datetime The 'updateddate' column for the 'refund' table.
markedforsubmissionon Datetime The 'markedforsubmissionon' column for the 'refund' table.
sourcetype String The 'sourcetype' column for the 'refund' table.
transferredtoaccounting String The 'transferredtoaccounting' column for the 'refund' table.
softdescriptor String The 'softdescriptor' column for the 'refund' table.
gatewayreconciliationreason String The 'gatewayreconciliationreason' column for the 'refund' table.
gatewaystate String The 'gatewaystate' column for the 'refund' table.
createdbyid String The 'createdbyid' column for the 'refund' table.
softdescriptorphone String The 'softdescriptorphone' column for the 'refund' table.
gateway String The 'gateway' column for the 'refund' table.
gatewayreconciliationstatus String The 'gatewayreconciliationstatus' column for the 'refund' table.
refundnumber String The 'refundnumber' column for the 'refund' table.
cancelledon Datetime The 'cancelledon' column for the 'refund' table.
gatewayresponsecode String The 'gatewayresponsecode' column for the 'refund' table.
gatewayresponse String The 'gatewayresponse' column for the 'refund' table.
status String The 'status' column for the 'refund' table.
comment String The 'comment' column for the 'refund' table.
methodtype String The 'methodtype' column for the 'refund' table.
submittedon Datetime The 'submittedon' column for the 'refund' table.
payoutid String The 'payoutid' column for the 'refund' table.
updatedbyid String The 'updatedbyid' column for the 'refund' table.
amount Decimal The 'amount' column for the 'refund' table.
refundtransactiontime Datetime The 'refundtransactiontime' column for the 'refund' table.
refunddate Date The 'refunddate' column for the 'refund' table.
reasoncode String The 'reasoncode' column for the 'refund' table.
type String The 'type' column for the 'refund' table.
paymentmethodsnapshotid String The 'paymentmethodsnapshotid' column for the 'refund' table.
referenceid String The 'referenceid' column for the 'refund' table.
settledon Datetime The 'settledon' column for the 'refund' table.
createddate Datetime The 'createddate' column for the 'refund' table.
id String The 'id' column for the 'refund' table.

Zuora Connector for CData Sync

RefundApplication

A refund that is applied to a payment or a credit memo.

Columns

Name Type Description
accountid String The 'accountid' column for the 'refundapplication' table.
updateddate Datetime The 'updateddate' column for the 'refundapplication' table.
updatedbyid String The 'updatedbyid' column for the 'refundapplication' table.
paymentid String The 'paymentid' column for the 'refundapplication' table.
invoiceid String The 'invoiceid' column for the 'refundapplication' table.
cashaccountingcodeid String The 'cashaccountingcodeid' column for the 'refundapplication' table.
creditmemoid String The 'creditmemoid' column for the 'refundapplication' table.
onaccountaccountingcodeid String The 'onaccountaccountingcodeid' column for the 'refundapplication' table.
createdbyid String The 'createdbyid' column for the 'refundapplication' table.
applyamount Decimal The 'applyamount' column for the 'refundapplication' table.
unappliedpaymentaccountingcodeid String The 'unappliedpaymentaccountingcodeid' column for the 'refundapplication' table.
createddate Datetime The 'createddate' column for the 'refundapplication' table.
id String The 'id' column for the 'refundapplication' table.
refundid String The 'refundid' column for the 'refundapplication' table.
journalentryid String The 'journalentryid' column for the 'refundapplication' table.
applicationgroupid String The 'applicationgroupid' column for the 'refundapplication' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'refundapplication' table.
effectivedate Date The 'effectivedate' column for the 'refundapplication' table.

Zuora Connector for CData Sync

RefundApplicationItem

A refund that is applied to a line item in a credit memo.

Columns

Name Type Description
updateddate Datetime The 'updateddate' column for the 'refundapplicationitem' table.
updatedbyid String The 'updatedbyid' column for the 'refundapplicationitem' table.
amount Decimal The 'amount' column for the 'refundapplicationitem' table.
refundapplicationid String The 'refundapplicationid' column for the 'refundapplicationitem' table.
cashaccountingcodeid String The 'cashaccountingcodeid' column for the 'refundapplicationitem' table.
onaccountaccountingcodeid String The 'onaccountaccountingcodeid' column for the 'refundapplicationitem' table.
createdbyid String The 'createdbyid' column for the 'refundapplicationitem' table.
unappliedpaymentaccountingcodeid String The 'unappliedpaymentaccountingcodeid' column for the 'refundapplicationitem' table.
createddate Datetime The 'createddate' column for the 'refundapplicationitem' table.
credittaxationitemid String The 'credittaxationitemid' column for the 'refundapplicationitem' table.
id String The 'id' column for the 'refundapplicationitem' table.
creditmemoitemid String The 'creditmemoitemid' column for the 'refundapplicationitem' table.
journalentryid String The 'journalentryid' column for the 'refundapplicationitem' table.
applicationgroupid String The 'applicationgroupid' column for the 'refundapplicationitem' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'refundapplicationitem' table.
effectivedate Date The 'effectivedate' column for the 'refundapplicationitem' table.

Zuora Connector for CData Sync

RefundInvoicePayment

A refunded portion of a payment that is applied to an invoice.

Columns

Name Type Description
createdbyid String The 'createdbyid' column for the 'refundinvoicepayment' table.
updateddate Datetime The 'updateddate' column for the 'refundinvoicepayment' table.
updatedbyid String The 'updatedbyid' column for the 'refundinvoicepayment' table.
createddate Datetime The 'createddate' column for the 'refundinvoicepayment' table.
invoicepaymentid String The 'invoicepaymentid' column for the 'refundinvoicepayment' table.
refundamount Decimal The 'refundamount' column for the 'refundinvoicepayment' table.
id String The 'id' column for the 'refundinvoicepayment' table.
refundid String The 'refundid' column for the 'refundinvoicepayment' table.
journalentryid String The 'journalentryid' column for the 'refundinvoicepayment' table.
cashaccountingcodeid String The 'cashaccountingcodeid' column for the 'refundinvoicepayment' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'refundinvoicepayment' table.

Zuora Connector for CData Sync

RefundPart

An applied or unapplied portion of a refund.

Columns

Name Type Description
accountid String The 'accountid' column for the 'refundpart' table.
createdbyid String The 'createdbyid' column for the 'refundpart' table.
updateddate Datetime The 'updateddate' column for the 'refundpart' table.
updatedbyid String The 'updatedbyid' column for the 'refundpart' table.
createddate Datetime The 'createddate' column for the 'refundpart' table.
paymentid String The 'paymentid' column for the 'refundpart' table.
refundamount Decimal The 'refundamount' column for the 'refundpart' table.
id String The 'id' column for the 'refundpart' table.
refundid String The 'refundid' column for the 'refundpart' table.
creditmemoid String The 'creditmemoid' column for the 'refundpart' table.

Zuora Connector for CData Sync

RefundPartItem

A portion of a refund that is applied to a line item in a credit memo.

Columns

Name Type Description
createdbyid String The 'createdbyid' column for the 'refundpartitem' table.
updateddate Datetime The 'updateddate' column for the 'refundpartitem' table.
updatedbyid String The 'updatedbyid' column for the 'refundpartitem' table.
amount Decimal The 'amount' column for the 'refundpartitem' table.
createddate Datetime The 'createddate' column for the 'refundpartitem' table.
id String The 'id' column for the 'refundpartitem' table.
creditmemoitemid String The 'creditmemoitemid' column for the 'refundpartitem' table.
refundpartid String The 'refundpartid' column for the 'refundpartitem' table.

Zuora Connector for CData Sync

RefundTransactionLog

A transaction from Zuora to the payment gateway associated with a payment.

Columns

Name Type Description
requeststring String The 'requeststring' column for the 'refundtransactionlog' table.
batchid String The 'batchid' column for the 'refundtransactionlog' table.
gatewaytransactiontype String The 'gatewaytransactiontype' column for the 'refundtransactionlog' table.
gatewayreasoncode String The 'gatewayreasoncode' column for the 'refundtransactionlog' table.
transactionid String The 'transactionid' column for the 'refundtransactionlog' table.
gatewaystate String The 'gatewaystate' column for the 'refundtransactionlog' table.
gateway String The 'gateway' column for the 'refundtransactionlog' table.
gatewayreasoncodedescription String The 'gatewayreasoncodedescription' column for the 'refundtransactionlog' table.
createddate Datetime The 'createddate' column for the 'refundtransactionlog' table.
id String The 'id' column for the 'refundtransactionlog' table.
refundid String The 'refundid' column for the 'refundtransactionlog' table.
responsestring String The 'responsestring' column for the 'refundtransactionlog' table.
transactiondate Datetime The 'transactiondate' column for the 'refundtransactionlog' table.

Zuora Connector for CData Sync

RevenueChargeSummary

A revenue distribution summary of a charge.

Columns

Name Type Description
accountid String The 'accountid' column for the 'revenuechargesummary' table.
description String The 'description' column for the 'revenuechargesummary' table.
rateplanchargeid String The 'rateplanchargeid' column for the 'revenuechargesummary' table.
createdbyid String The 'createdbyid' column for the 'revenuechargesummary' table.
number String The 'number' column for the 'revenuechargesummary' table.
updateddate Datetime The 'updateddate' column for the 'revenuechargesummary' table.
updatedbyid String The 'updatedbyid' column for the 'revenuechargesummary' table.
currency String The 'currency' column for the 'revenuechargesummary' table.
createddate Datetime The 'createddate' column for the 'revenuechargesummary' table.
id String The 'id' column for the 'revenuechargesummary' table.

Zuora Connector for CData Sync

RevenueChargeSummaryItem

An item in a revenue distribution summary of a charge.

Columns

Name Type Description
revenuechargesummaryid String The 'revenuechargesummaryid' column for the 'revenuechargesummaryitem' table.
createdbyid String The 'createdbyid' column for the 'revenuechargesummaryitem' table.
updateddate Datetime The 'updateddate' column for the 'revenuechargesummaryitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenuechargesummaryitem' table.
amount Decimal The 'amount' column for the 'revenuechargesummaryitem' table.
currency String The 'currency' column for the 'revenuechargesummaryitem' table.
createddate Datetime The 'createddate' column for the 'revenuechargesummaryitem' table.
id String The 'id' column for the 'revenuechargesummaryitem' table.
accountingperiodid String The 'accountingperiodid' column for the 'revenuechargesummaryitem' table.

Zuora Connector for CData Sync

RevenueEvent

A revenue event.

Columns

Name Type Description
recognitionstart Date The 'recognitionstart' column for the 'revenueevent' table.
revenuescheduleid String The 'revenuescheduleid' column for the 'revenueevent' table.
description String The 'description' column for the 'revenueevent' table.
revenueeventtypeid String The 'revenueeventtypeid' column for the 'revenueevent' table.
updateddate Datetime The 'updateddate' column for the 'revenueevent' table.
updatedbyid String The 'updatedbyid' column for the 'revenueevent' table.
amount Decimal The 'amount' column for the 'revenueevent' table.
recognitionend Date The 'recognitionend' column for the 'revenueevent' table.
createdbyid String The 'createdbyid' column for the 'revenueevent' table.
number String The 'number' column for the 'revenueevent' table.
currency String The 'currency' column for the 'revenueevent' table.
createddate Datetime The 'createddate' column for the 'revenueevent' table.
id String The 'id' column for the 'revenueevent' table.

Zuora Connector for CData Sync

RevenueEventCreditMemoItem

A revenue event that is associated with a line item in a credit memo.

Columns

Name Type Description
recognitionstart Date The 'recognitionstart' column for the 'revenueeventcreditmemoitem' table.
description String The 'description' column for the 'revenueeventcreditmemoitem' table.
revenueeventtypeid String The 'revenueeventtypeid' column for the 'revenueeventcreditmemoitem' table.
updateddate Datetime The 'updateddate' column for the 'revenueeventcreditmemoitem' table.
revenueschedulecreditmemoitemid String The 'revenueschedulecreditmemoitemid' column for the 'revenueeventcreditmemoitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenueeventcreditmemoitem' table.
amount Decimal The 'amount' column for the 'revenueeventcreditmemoitem' table.
recognitionend Date The 'recognitionend' column for the 'revenueeventcreditmemoitem' table.
createdbyid String The 'createdbyid' column for the 'revenueeventcreditmemoitem' table.
number String The 'number' column for the 'revenueeventcreditmemoitem' table.
currency String The 'currency' column for the 'revenueeventcreditmemoitem' table.
createddate Datetime The 'createddate' column for the 'revenueeventcreditmemoitem' table.
id String The 'id' column for the 'revenueeventcreditmemoitem' table.

Zuora Connector for CData Sync

RevenueEventDebitMemoItem

A revenue event that is associated with a line item in a debit memo.

Columns

Name Type Description
recognitionstart Date The 'recognitionstart' column for the 'revenueeventdebitmemoitem' table.
description String The 'description' column for the 'revenueeventdebitmemoitem' table.
revenueeventtypeid String The 'revenueeventtypeid' column for the 'revenueeventdebitmemoitem' table.
updateddate Datetime The 'updateddate' column for the 'revenueeventdebitmemoitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenueeventdebitmemoitem' table.
amount Decimal The 'amount' column for the 'revenueeventdebitmemoitem' table.
recognitionend Date The 'recognitionend' column for the 'revenueeventdebitmemoitem' table.
revenuescheduledebitmemoitemid String The 'revenuescheduledebitmemoitemid' column for the 'revenueeventdebitmemoitem' table.
createdbyid String The 'createdbyid' column for the 'revenueeventdebitmemoitem' table.
number String The 'number' column for the 'revenueeventdebitmemoitem' table.
currency String The 'currency' column for the 'revenueeventdebitmemoitem' table.
createddate Datetime The 'createddate' column for the 'revenueeventdebitmemoitem' table.
id String The 'id' column for the 'revenueeventdebitmemoitem' table.

Zuora Connector for CData Sync

RevenueEventInvoiceItem

A revenue event that is associated with a line item in an invoice.

Columns

Name Type Description
recognitionstart Date The 'recognitionstart' column for the 'revenueeventinvoiceitem' table.
description String The 'description' column for the 'revenueeventinvoiceitem' table.
revenueeventtypeid String The 'revenueeventtypeid' column for the 'revenueeventinvoiceitem' table.
updateddate Datetime The 'updateddate' column for the 'revenueeventinvoiceitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenueeventinvoiceitem' table.
amount Decimal The 'amount' column for the 'revenueeventinvoiceitem' table.
revenuescheduleinvoiceitemid String The 'revenuescheduleinvoiceitemid' column for the 'revenueeventinvoiceitem' table.
recognitionend Date The 'recognitionend' column for the 'revenueeventinvoiceitem' table.
createdbyid String The 'createdbyid' column for the 'revenueeventinvoiceitem' table.
number String The 'number' column for the 'revenueeventinvoiceitem' table.
currency String The 'currency' column for the 'revenueeventinvoiceitem' table.
createddate Datetime The 'createddate' column for the 'revenueeventinvoiceitem' table.
id String The 'id' column for the 'revenueeventinvoiceitem' table.

Zuora Connector for CData Sync

RevenueEventInvoiceItemAdjustment

A revenue event that is associated with an adjustment to a line item in an invoice.

Columns

Name Type Description
recognitionstart Date The 'recognitionstart' column for the 'revenueeventinvoiceitemadjustment' table.
description String The 'description' column for the 'revenueeventinvoiceitemadjustment' table.
revenueeventtypeid String The 'revenueeventtypeid' column for the 'revenueeventinvoiceitemadjustment' table.
updateddate Datetime The 'updateddate' column for the 'revenueeventinvoiceitemadjustment' table.
updatedbyid String The 'updatedbyid' column for the 'revenueeventinvoiceitemadjustment' table.
amount Decimal The 'amount' column for the 'revenueeventinvoiceitemadjustment' table.
recognitionend Date The 'recognitionend' column for the 'revenueeventinvoiceitemadjustment' table.
createdbyid String The 'createdbyid' column for the 'revenueeventinvoiceitemadjustment' table.
number String The 'number' column for the 'revenueeventinvoiceitemadjustment' table.
currency String The 'currency' column for the 'revenueeventinvoiceitemadjustment' table.
createddate Datetime The 'createddate' column for the 'revenueeventinvoiceitemadjustment' table.
id String The 'id' column for the 'revenueeventinvoiceitemadjustment' table.
revenuescheduleinvoiceitemadjustmentid String The 'revenuescheduleinvoiceitemadjustmentid' column for the 'revenueeventinvoiceitemadjustment' table.

Zuora Connector for CData Sync

RevenueEventItem

A revenue event item.

Columns

Name Type Description
updateddate Datetime The 'updateddate' column for the 'revenueeventitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenueeventitem' table.
amount Decimal The 'amount' column for the 'revenueeventitem' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'revenueeventitem' table.
revenueeventid String The 'revenueeventid' column for the 'revenueeventitem' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'revenueeventitem' table.
createdbyid String The 'createdbyid' column for the 'revenueeventitem' table.
currency String The 'currency' column for the 'revenueeventitem' table.
createddate Datetime The 'createddate' column for the 'revenueeventitem' table.
id String The 'id' column for the 'revenueeventitem' table.
accountingperiodid String The 'accountingperiodid' column for the 'revenueeventitem' table.
journalentryid String The 'journalentryid' column for the 'revenueeventitem' table.

Zuora Connector for CData Sync

RevenueEventItemCreditMemoItem

A revenue event item that is associated with a line item in a credit memo.

Columns

Name Type Description
updateddate Datetime The 'updateddate' column for the 'revenueeventitemcreditmemoitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenueeventitemcreditmemoitem' table.
amount Decimal The 'amount' column for the 'revenueeventitemcreditmemoitem' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'revenueeventitemcreditmemoitem' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'revenueeventitemcreditmemoitem' table.
revenueeventcreditmemoitemid String The 'revenueeventcreditmemoitemid' column for the 'revenueeventitemcreditmemoitem' table.
createdbyid String The 'createdbyid' column for the 'revenueeventitemcreditmemoitem' table.
currency String The 'currency' column for the 'revenueeventitemcreditmemoitem' table.
createddate Datetime The 'createddate' column for the 'revenueeventitemcreditmemoitem' table.
id String The 'id' column for the 'revenueeventitemcreditmemoitem' table.
accountingperiodid String The 'accountingperiodid' column for the 'revenueeventitemcreditmemoitem' table.
journalentryid String The 'journalentryid' column for the 'revenueeventitemcreditmemoitem' table.

Zuora Connector for CData Sync

RevenueEventItemDebitMemoItem

A revenue event item that is associated with a line item in a debit memo.

Columns

Name Type Description
updateddate Datetime The 'updateddate' column for the 'revenueeventitemdebitmemoitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenueeventitemdebitmemoitem' table.
amount Decimal The 'amount' column for the 'revenueeventitemdebitmemoitem' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'revenueeventitemdebitmemoitem' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'revenueeventitemdebitmemoitem' table.
revenueeventdebitmemoitemid String The 'revenueeventdebitmemoitemid' column for the 'revenueeventitemdebitmemoitem' table.
createdbyid String The 'createdbyid' column for the 'revenueeventitemdebitmemoitem' table.
currency String The 'currency' column for the 'revenueeventitemdebitmemoitem' table.
createddate Datetime The 'createddate' column for the 'revenueeventitemdebitmemoitem' table.
id String The 'id' column for the 'revenueeventitemdebitmemoitem' table.
accountingperiodid String The 'accountingperiodid' column for the 'revenueeventitemdebitmemoitem' table.
journalentryid String The 'journalentryid' column for the 'revenueeventitemdebitmemoitem' table.

Zuora Connector for CData Sync

RevenueEventItemInvoiceItem

A revenue event item that is associated with a line item in an invoice.

Columns

Name Type Description
updateddate Datetime The 'updateddate' column for the 'revenueeventiteminvoiceitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenueeventiteminvoiceitem' table.
amount Decimal The 'amount' column for the 'revenueeventiteminvoiceitem' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'revenueeventiteminvoiceitem' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'revenueeventiteminvoiceitem' table.
createdbyid String The 'createdbyid' column for the 'revenueeventiteminvoiceitem' table.
currency String The 'currency' column for the 'revenueeventiteminvoiceitem' table.
createddate Datetime The 'createddate' column for the 'revenueeventiteminvoiceitem' table.
id String The 'id' column for the 'revenueeventiteminvoiceitem' table.
accountingperiodid String The 'accountingperiodid' column for the 'revenueeventiteminvoiceitem' table.
journalentryid String The 'journalentryid' column for the 'revenueeventiteminvoiceitem' table.
revenueeventinvoiceitemid String The 'revenueeventinvoiceitemid' column for the 'revenueeventiteminvoiceitem' table.

Zuora Connector for CData Sync

RevenueEventItemInvoiceItemAdjustment

A revenue event item that is associated with an adjustment to a line item in an invoice.

Columns

Name Type Description
updateddate Datetime The 'updateddate' column for the 'revenueeventiteminvoiceitemadjustment' table.
updatedbyid String The 'updatedbyid' column for the 'revenueeventiteminvoiceitemadjustment' table.
amount Decimal The 'amount' column for the 'revenueeventiteminvoiceitemadjustment' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'revenueeventiteminvoiceitemadjustment' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'revenueeventiteminvoiceitemadjustment' table.
createdbyid String The 'createdbyid' column for the 'revenueeventiteminvoiceitemadjustment' table.
currency String The 'currency' column for the 'revenueeventiteminvoiceitemadjustment' table.
createddate Datetime The 'createddate' column for the 'revenueeventiteminvoiceitemadjustment' table.
revenueeventinvoiceitemadjustmentid String The 'revenueeventinvoiceitemadjustmentid' column for the 'revenueeventiteminvoiceitemadjustment' table.
id String The 'id' column for the 'revenueeventiteminvoiceitemadjustment' table.
accountingperiodid String The 'accountingperiodid' column for the 'revenueeventiteminvoiceitemadjustment' table.
journalentryid String The 'journalentryid' column for the 'revenueeventiteminvoiceitemadjustment' table.

Zuora Connector for CData Sync

RevenueEventType

A revenue event type.

Columns

Name Type Description
active Bool The 'active' column for the 'revenueeventtype' table.
createdbyid String The 'createdbyid' column for the 'revenueeventtype' table.
updateddate Datetime The 'updateddate' column for the 'revenueeventtype' table.
updatedbyid String The 'updatedbyid' column for the 'revenueeventtype' table.
createddate Datetime The 'createddate' column for the 'revenueeventtype' table.
systemid String The 'systemid' column for the 'revenueeventtype' table.
id String The 'id' column for the 'revenueeventtype' table.
name String The 'name' column for the 'revenueeventtype' table.

Zuora Connector for CData Sync

RevenueSchedule

A revenue schedule.

Columns

Name Type Description
billingtransactionid String The 'billingtransactionid' column for the 'revenueschedule' table.
revenuechargesummaryid String The 'revenuechargesummaryid' column for the 'revenueschedule' table.
accountid String The 'accountid' column for the 'revenueschedule' table.
description String The 'description' column for the 'revenueschedule' table.
transactionnumber String The 'transactionnumber' column for the 'revenueschedule' table.
updateddate Datetime The 'updateddate' column for the 'revenueschedule' table.
updatedbyid String The 'updatedbyid' column for the 'revenueschedule' table.
amount Decimal The 'amount' column for the 'revenueschedule' table.
financetransactiontype String The 'financetransactiontype' column for the 'revenueschedule' table.
createdbyid String The 'createdbyid' column for the 'revenueschedule' table.
number String The 'number' column for the 'revenueschedule' table.
referenceid String The 'referenceid' column for the 'revenueschedule' table.
currency String The 'currency' column for the 'revenueschedule' table.
createddate Datetime The 'createddate' column for the 'revenueschedule' table.
exchangeratedate Date The 'exchangeratedate' column for the 'revenueschedule' table.
recognitionperiodend Date The 'recognitionperiodend' column for the 'revenueschedule' table.
revenuescheduledate Date The 'revenuescheduledate' column for the 'revenueschedule' table.
undistributedamount Decimal The 'undistributedamount' column for the 'revenueschedule' table.
id String The 'id' column for the 'revenueschedule' table.
rule String The 'rule' column for the 'revenueschedule' table.
recognitionperiodstart Date The 'recognitionperiodstart' column for the 'revenueschedule' table.
transactiondate Date The 'transactiondate' column for the 'revenueschedule' table.

Zuora Connector for CData Sync

RevenueScheduleCreditMemoItem

A revenue schedule that is associated with a line item in a credit memo.

Columns

Name Type Description
revenuechargesummaryid String The 'revenuechargesummaryid' column for the 'revenueschedulecreditmemoitem' table.
accountid String The 'accountid' column for the 'revenueschedulecreditmemoitem' table.
description String The 'description' column for the 'revenueschedulecreditmemoitem' table.
transactionnumber String The 'transactionnumber' column for the 'revenueschedulecreditmemoitem' table.
updateddate Datetime The 'updateddate' column for the 'revenueschedulecreditmemoitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenueschedulecreditmemoitem' table.
amount Decimal The 'amount' column for the 'revenueschedulecreditmemoitem' table.
financetransactiontype String The 'financetransactiontype' column for the 'revenueschedulecreditmemoitem' table.
createdbyid String The 'createdbyid' column for the 'revenueschedulecreditmemoitem' table.
number String The 'number' column for the 'revenueschedulecreditmemoitem' table.
referenceid String The 'referenceid' column for the 'revenueschedulecreditmemoitem' table.
currency String The 'currency' column for the 'revenueschedulecreditmemoitem' table.
createddate Datetime The 'createddate' column for the 'revenueschedulecreditmemoitem' table.
exchangeratedate Date The 'exchangeratedate' column for the 'revenueschedulecreditmemoitem' table.
recognitionperiodend Date The 'recognitionperiodend' column for the 'revenueschedulecreditmemoitem' table.
revenuescheduledate Date The 'revenuescheduledate' column for the 'revenueschedulecreditmemoitem' table.
undistributedamount Decimal The 'undistributedamount' column for the 'revenueschedulecreditmemoitem' table.
id String The 'id' column for the 'revenueschedulecreditmemoitem' table.
rule String The 'rule' column for the 'revenueschedulecreditmemoitem' table.
creditmemoitemid String The 'creditmemoitemid' column for the 'revenueschedulecreditmemoitem' table.
recognitionperiodstart Date The 'recognitionperiodstart' column for the 'revenueschedulecreditmemoitem' table.
transactiondate Date The 'transactiondate' column for the 'revenueschedulecreditmemoitem' table.

Zuora Connector for CData Sync

RevenueScheduleDebitMemoItem

A revenue schedule that is associated with a line item in a debit memo.

Columns

Name Type Description
revenuechargesummaryid String The 'revenuechargesummaryid' column for the 'revenuescheduledebitmemoitem' table.
accountid String The 'accountid' column for the 'revenuescheduledebitmemoitem' table.
description String The 'description' column for the 'revenuescheduledebitmemoitem' table.
transactionnumber String The 'transactionnumber' column for the 'revenuescheduledebitmemoitem' table.
updateddate Datetime The 'updateddate' column for the 'revenuescheduledebitmemoitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenuescheduledebitmemoitem' table.
amount Decimal The 'amount' column for the 'revenuescheduledebitmemoitem' table.
debitmemoitemid String The 'debitmemoitemid' column for the 'revenuescheduledebitmemoitem' table.
financetransactiontype String The 'financetransactiontype' column for the 'revenuescheduledebitmemoitem' table.
createdbyid String The 'createdbyid' column for the 'revenuescheduledebitmemoitem' table.
number String The 'number' column for the 'revenuescheduledebitmemoitem' table.
referenceid String The 'referenceid' column for the 'revenuescheduledebitmemoitem' table.
currency String The 'currency' column for the 'revenuescheduledebitmemoitem' table.
createddate Datetime The 'createddate' column for the 'revenuescheduledebitmemoitem' table.
exchangeratedate Date The 'exchangeratedate' column for the 'revenuescheduledebitmemoitem' table.
recognitionperiodend Date The 'recognitionperiodend' column for the 'revenuescheduledebitmemoitem' table.
revenuescheduledate Date The 'revenuescheduledate' column for the 'revenuescheduledebitmemoitem' table.
undistributedamount Decimal The 'undistributedamount' column for the 'revenuescheduledebitmemoitem' table.
id String The 'id' column for the 'revenuescheduledebitmemoitem' table.
rule String The 'rule' column for the 'revenuescheduledebitmemoitem' table.
recognitionperiodstart Date The 'recognitionperiodstart' column for the 'revenuescheduledebitmemoitem' table.
transactiondate Date The 'transactiondate' column for the 'revenuescheduledebitmemoitem' table.

Zuora Connector for CData Sync

RevenueScheduleInvoiceItem

A revenue schedule that is associated with a line item in an invoice.

Columns

Name Type Description
revenuechargesummaryid String The 'revenuechargesummaryid' column for the 'revenuescheduleinvoiceitem' table.
accountid String The 'accountid' column for the 'revenuescheduleinvoiceitem' table.
description String The 'description' column for the 'revenuescheduleinvoiceitem' table.
transactionnumber String The 'transactionnumber' column for the 'revenuescheduleinvoiceitem' table.
updateddate Datetime The 'updateddate' column for the 'revenuescheduleinvoiceitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenuescheduleinvoiceitem' table.
amount Decimal The 'amount' column for the 'revenuescheduleinvoiceitem' table.
invoiceitemid String The 'invoiceitemid' column for the 'revenuescheduleinvoiceitem' table.
financetransactiontype String The 'financetransactiontype' column for the 'revenuescheduleinvoiceitem' table.
createdbyid String The 'createdbyid' column for the 'revenuescheduleinvoiceitem' table.
number String The 'number' column for the 'revenuescheduleinvoiceitem' table.
referenceid String The 'referenceid' column for the 'revenuescheduleinvoiceitem' table.
currency String The 'currency' column for the 'revenuescheduleinvoiceitem' table.
createddate Datetime The 'createddate' column for the 'revenuescheduleinvoiceitem' table.
exchangeratedate Date The 'exchangeratedate' column for the 'revenuescheduleinvoiceitem' table.
recognitionperiodend Date The 'recognitionperiodend' column for the 'revenuescheduleinvoiceitem' table.
revenuescheduledate Date The 'revenuescheduledate' column for the 'revenuescheduleinvoiceitem' table.
undistributedamount Decimal The 'undistributedamount' column for the 'revenuescheduleinvoiceitem' table.
id String The 'id' column for the 'revenuescheduleinvoiceitem' table.
rule String The 'rule' column for the 'revenuescheduleinvoiceitem' table.
recognitionperiodstart Date The 'recognitionperiodstart' column for the 'revenuescheduleinvoiceitem' table.
transactiondate Date The 'transactiondate' column for the 'revenuescheduleinvoiceitem' table.

Zuora Connector for CData Sync

RevenueScheduleInvoiceItemAdjustment

A revenue schedule that is associated with an adjustment to a line item in an invoice.

Columns

Name Type Description
revenuechargesummaryid String The 'revenuechargesummaryid' column for the 'revenuescheduleinvoiceitemadjustment' table.
accountid String The 'accountid' column for the 'revenuescheduleinvoiceitemadjustment' table.
description String The 'description' column for the 'revenuescheduleinvoiceitemadjustment' table.
transactionnumber String The 'transactionnumber' column for the 'revenuescheduleinvoiceitemadjustment' table.
updateddate Datetime The 'updateddate' column for the 'revenuescheduleinvoiceitemadjustment' table.
updatedbyid String The 'updatedbyid' column for the 'revenuescheduleinvoiceitemadjustment' table.
amount Decimal The 'amount' column for the 'revenuescheduleinvoiceitemadjustment' table.
invoiceitemadjustmentid String The 'invoiceitemadjustmentid' column for the 'revenuescheduleinvoiceitemadjustment' table.
financetransactiontype String The 'financetransactiontype' column for the 'revenuescheduleinvoiceitemadjustment' table.
createdbyid String The 'createdbyid' column for the 'revenuescheduleinvoiceitemadjustment' table.
number String The 'number' column for the 'revenuescheduleinvoiceitemadjustment' table.
referenceid String The 'referenceid' column for the 'revenuescheduleinvoiceitemadjustment' table.
currency String The 'currency' column for the 'revenuescheduleinvoiceitemadjustment' table.
createddate Datetime The 'createddate' column for the 'revenuescheduleinvoiceitemadjustment' table.
exchangeratedate Date The 'exchangeratedate' column for the 'revenuescheduleinvoiceitemadjustment' table.
recognitionperiodend Date The 'recognitionperiodend' column for the 'revenuescheduleinvoiceitemadjustment' table.
revenuescheduledate Date The 'revenuescheduledate' column for the 'revenuescheduleinvoiceitemadjustment' table.
undistributedamount Decimal The 'undistributedamount' column for the 'revenuescheduleinvoiceitemadjustment' table.
id String The 'id' column for the 'revenuescheduleinvoiceitemadjustment' table.
rule String The 'rule' column for the 'revenuescheduleinvoiceitemadjustment' table.
recognitionperiodstart Date The 'recognitionperiodstart' column for the 'revenuescheduleinvoiceitemadjustment' table.
transactiondate Date The 'transactiondate' column for the 'revenuescheduleinvoiceitemadjustment' table.

Zuora Connector for CData Sync

RevenueScheduleItem

A revenue schedule item.

Columns

Name Type Description
revenuescheduleid String The 'revenuescheduleid' column for the 'revenuescheduleitem' table.
createdbyid String The 'createdbyid' column for the 'revenuescheduleitem' table.
updateddate Datetime The 'updateddate' column for the 'revenuescheduleitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenuescheduleitem' table.
amount Decimal The 'amount' column for the 'revenuescheduleitem' table.
currency String The 'currency' column for the 'revenuescheduleitem' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'revenuescheduleitem' table.
createddate Datetime The 'createddate' column for the 'revenuescheduleitem' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'revenuescheduleitem' table.
id String The 'id' column for the 'revenuescheduleitem' table.
accountingperiodid String The 'accountingperiodid' column for the 'revenuescheduleitem' table.

Zuora Connector for CData Sync

RevenueScheduleItemCreditMemoItem

A revenue schedule item that is associated with a line item in a credit memo.

Columns

Name Type Description
createdbyid String The 'createdbyid' column for the 'revenuescheduleitemcreditmemoitem' table.
updateddate Datetime The 'updateddate' column for the 'revenuescheduleitemcreditmemoitem' table.
revenueschedulecreditmemoitemid String The 'revenueschedulecreditmemoitemid' column for the 'revenuescheduleitemcreditmemoitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenuescheduleitemcreditmemoitem' table.
amount Decimal The 'amount' column for the 'revenuescheduleitemcreditmemoitem' table.
currency String The 'currency' column for the 'revenuescheduleitemcreditmemoitem' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'revenuescheduleitemcreditmemoitem' table.
createddate Datetime The 'createddate' column for the 'revenuescheduleitemcreditmemoitem' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'revenuescheduleitemcreditmemoitem' table.
id String The 'id' column for the 'revenuescheduleitemcreditmemoitem' table.
accountingperiodid String The 'accountingperiodid' column for the 'revenuescheduleitemcreditmemoitem' table.

Zuora Connector for CData Sync

RevenueScheduleItemInvoiceItem

A revenue schedule item that is associated with a line item in an invoice.

Columns

Name Type Description
createdbyid String The 'createdbyid' column for the 'revenuescheduleiteminvoiceitem' table.
updateddate Datetime The 'updateddate' column for the 'revenuescheduleiteminvoiceitem' table.
updatedbyid String The 'updatedbyid' column for the 'revenuescheduleiteminvoiceitem' table.
amount Decimal The 'amount' column for the 'revenuescheduleiteminvoiceitem' table.
currency String The 'currency' column for the 'revenuescheduleiteminvoiceitem' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'revenuescheduleiteminvoiceitem' table.
createddate Datetime The 'createddate' column for the 'revenuescheduleiteminvoiceitem' table.
revenuescheduleinvoiceitemid String The 'revenuescheduleinvoiceitemid' column for the 'revenuescheduleiteminvoiceitem' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'revenuescheduleiteminvoiceitem' table.
id String The 'id' column for the 'revenuescheduleiteminvoiceitem' table.
accountingperiodid String The 'accountingperiodid' column for the 'revenuescheduleiteminvoiceitem' table.

Zuora Connector for CData Sync

RevenueScheduleItemInvoiceItemAdjustment

A revenue schedule item that is associated with an adjustment to a line item in an invoice.

Columns

Name Type Description
createdbyid String The 'createdbyid' column for the 'revenuescheduleiteminvoiceitemadjustment' table.
updateddate Datetime The 'updateddate' column for the 'revenuescheduleiteminvoiceitemadjustment' table.
updatedbyid String The 'updatedbyid' column for the 'revenuescheduleiteminvoiceitemadjustment' table.
amount Decimal The 'amount' column for the 'revenuescheduleiteminvoiceitemadjustment' table.
currency String The 'currency' column for the 'revenuescheduleiteminvoiceitemadjustment' table.
deferredrevenueaccountingcodeid String The 'deferredrevenueaccountingcodeid' column for the 'revenuescheduleiteminvoiceitemadjustment' table.
createddate Datetime The 'createddate' column for the 'revenuescheduleiteminvoiceitemadjustment' table.
recognizedrevenueaccountingcodeid String The 'recognizedrevenueaccountingcodeid' column for the 'revenuescheduleiteminvoiceitemadjustment' table.
id String The 'id' column for the 'revenuescheduleiteminvoiceitemadjustment' table.
revenuescheduleinvoiceitemadjustmentid String The 'revenuescheduleinvoiceitemadjustmentid' column for the 'revenuescheduleiteminvoiceitemadjustment' table.
accountingperiodid String The 'accountingperiodid' column for the 'revenuescheduleiteminvoiceitemadjustment' table.

Zuora Connector for CData Sync

Subscription

Each row of this table represents a subscription.

Columns

Name Type Description
currenttermperiodtype String The 'currenttermperiodtype' column for the 'subscription' table.
quotenumber_qt String The 'quotenumber__qt' column for the 'subscription' table.
subscriptionstartdate Date The 'subscriptionstartdate' column for the 'subscription' table.
accountid String The 'accountid' column for the 'subscription' table.
opportunityname_qt String The 'opportunityname__qt' column for the 'subscription' table.
updateddate Datetime The 'updateddate' column for the 'subscription' table.
partnerid_c String The 'partnerid__c' column for the 'subscription' table.
autorenew Bool The 'autorenew' column for the 'subscription' table.
creatorinvoiceownerid String The 'creatorinvoiceownerid' column for the 'subscription' table.
renewaltermperiodtype String The 'renewaltermperiodtype' column for the 'subscription' table.
serviceactivationdate Date The 'serviceactivationdate' column for the 'subscription' table.
creatoraccountid String The 'creatoraccountid' column for the 'subscription' table.
termtype String The 'termtype' column for the 'subscription' table.
name String The 'name' column for the 'subscription' table.
contracteffectivedate Date The 'contracteffectivedate' column for the 'subscription' table.
subscriptionversionamendmentid String The 'subscriptionversionamendmentid' column for the 'subscription' table.
contractacceptancedate Date The 'contractacceptancedate' column for the 'subscription' table.
createdbyid String The 'createdbyid' column for the 'subscription' table.
version String The 'version' column for the 'subscription' table.
currentterm String The 'currentterm' column for the 'subscription' table.
rampid String The 'rampid' column for the 'subscription' table.
cpqbundlejsonid_qt String The 'cpqbundlejsonid__qt' column for the 'subscription' table.
quotetype_qt String The 'quotetype__qt' column for the 'subscription' table.
initialterm String The 'initialterm' column for the 'subscription' table.
notes String The 'notes' column for the 'subscription' table.
cancelleddate Date The 'cancelleddate' column for the 'subscription' table.
status String The 'status' column for the 'subscription' table.
quotebusinesstype_qt String The 'quotebusinesstype__qt' column for the 'subscription' table.
previoussubscriptionid String The 'previoussubscriptionid' column for the 'subscription' table.
originalid String The 'originalid' column for the 'subscription' table.
updatedbyid String The 'updatedbyid' column for the 'subscription' table.
renewalsetting String The 'renewalsetting' column for the 'subscription' table.
isinvoiceseparate Bool The 'isinvoiceseparate' column for the 'subscription' table.
opportunityclosedate_qt Date The 'opportunityclosedate__qt' column for the 'subscription' table.
subscriptionenddate Date The 'subscriptionenddate' column for the 'subscription' table.
revision String The 'revision' column for the 'subscription' table.
termstartdate Date The 'termstartdate' column for the 'subscription' table.
createddate Datetime The 'createddate' column for the 'subscription' table.
renewalterm String The 'renewalterm' column for the 'subscription' table.
id String The 'id' column for the 'subscription' table.
originalcreateddate Datetime The 'originalcreateddate' column for the 'subscription' table.
initialtermperiodtype String The 'initialtermperiodtype' column for the 'subscription' table.
invoiceownerid String The 'invoiceownerid' column for the 'subscription' table.
termenddate Date The 'termenddate' column for the 'subscription' table.

Zuora Connector for CData Sync

SubscriptionProductFeature

Each row of this table represents a subscription for a product feature.

Columns

Name Type Description
featureid String The 'featureid' column for the 'subscriptionproductfeature' table.
rateplanid String The 'rateplanid' column for the 'subscriptionproductfeature' table.
description String The 'description' column for the 'subscriptionproductfeature' table.
createdbyid String The 'createdbyid' column for the 'subscriptionproductfeature' table.
updateddate Datetime The 'updateddate' column for the 'subscriptionproductfeature' table.
updatedbyid String The 'updatedbyid' column for the 'subscriptionproductfeature' table.
createddate Datetime The 'createddate' column for the 'subscriptionproductfeature' table.
id String The 'id' column for the 'subscriptionproductfeature' table.
name String The 'name' column for the 'subscriptionproductfeature' table.

Zuora Connector for CData Sync

TaxationItem

A taxation line item in an invoice.

Columns

Name Type Description
accountingcode String The 'accountingcode' column for the 'taxationitem' table.
updateddate Datetime The 'updateddate' column for the 'taxationitem' table.
creditamount Decimal The 'creditamount' column for the 'taxationitem' table.
paymentamount Decimal The 'paymentamount' column for the 'taxationitem' table.
name String The 'name' column for the 'taxationitem' table.
exemptamount Decimal The 'exemptamount' column for the 'taxationitem' table.
salestaxpayableaccountingcodeid String The 'salestaxpayableaccountingcodeid' column for the 'taxationitem' table.
taxamount Decimal The 'taxamount' column for the 'taxationitem' table.
taxcodedescription String The 'taxcodedescription' column for the 'taxationitem' table.
createdbyid String The 'createdbyid' column for the 'taxationitem' table.
taxcode String The 'taxcode' column for the 'taxationitem' table.
taxdate Date The 'taxdate' column for the 'taxationitem' table.
taxrate Decimal The 'taxrate' column for the 'taxationitem' table.
journalentryid String The 'journalentryid' column for the 'taxationitem' table.
taxratetype String The 'taxratetype' column for the 'taxationitem' table.
taxmode String The 'taxmode' column for the 'taxationitem' table.
updatedbyid String The 'updatedbyid' column for the 'taxationitem' table.
invoiceitemid String The 'invoiceitemid' column for the 'taxationitem' table.
locationcode String The 'locationcode' column for the 'taxationitem' table.
jurisdiction String The 'jurisdiction' column for the 'taxationitem' table.
taxratedescription String The 'taxratedescription' column for the 'taxationitem' table.
createddate Datetime The 'createddate' column for the 'taxationitem' table.
id String The 'id' column for the 'taxationitem' table.
balance Decimal The 'balance' column for the 'taxationitem' table.
taxableitemsnapshotid String The 'taxableitemsnapshotid' column for the 'taxationitem' table.
accountreceivableaccountingcodeid String The 'accountreceivableaccountingcodeid' column for the 'taxationitem' table.

Zuora Connector for CData Sync

UpdaterBatch

A batch of payment methods that was sent to a payment method updater service provider.

Columns

Name Type Description
status String The 'status' column for the 'updaterbatch' table.
batchtransactionid String The 'batchtransactionid' column for the 'updaterbatch' table.
requestid String The 'requestid' column for the 'updaterbatch' table.
submittedtime Datetime The 'submittedtime' column for the 'updaterbatch' table.
completedtime Datetime The 'completedtime' column for the 'updaterbatch' table.
updateddate Datetime The 'updateddate' column for the 'updaterbatch' table.
retrieveresponsecode String The 'retrieveresponsecode' column for the 'updaterbatch' table.
updatedbyid String The 'updatedbyid' column for the 'updaterbatch' table.
batchid String The 'batchid' column for the 'updaterbatch' table.
internalstatus String The 'internalstatus' column for the 'updaterbatch' table.
updateraccountid String The 'updateraccountid' column for the 'updaterbatch' table.
updaterrequestid String The 'updaterrequestid' column for the 'updaterbatch' table.
submitresponsecode String The 'submitresponsecode' column for the 'updaterbatch' table.
createdbyid String The 'createdbyid' column for the 'updaterbatch' table.
retrieveresponsemessage String The 'retrieveresponsemessage' column for the 'updaterbatch' table.
updatergatewaytype String The 'updatergatewaytype' column for the 'updaterbatch' table.
createddate Datetime The 'createddate' column for the 'updaterbatch' table.
submitresponsemessage String The 'submitresponsemessage' column for the 'updaterbatch' table.
id String The 'id' column for the 'updaterbatch' table.
postdate Date The 'postdate' column for the 'updaterbatch' table.
submittingtime Datetime The 'submittingtime' column for the 'updaterbatch' table.

Zuora Connector for CData Sync

UpdaterDetail

A payment method update.

Columns

Name Type Description
paymentmethodid String The 'paymentmethodid' column for the 'updaterdetail' table.
updateddate Datetime The 'updateddate' column for the 'updaterdetail' table.
retrieveresponsetransactionlog String The 'retrieveresponsetransactionlog' column for the 'updaterdetail' table.
submitresponsetransactionlog String The 'submitresponsetransactionlog' column for the 'updaterdetail' table.
cardexpirationmonth String The 'cardexpirationmonth' column for the 'updaterdetail' table.
newcardexpirationyear String The 'newcardexpirationyear' column for the 'updaterdetail' table.
newpaymentmethodid String The 'newpaymentmethodid' column for the 'updaterdetail' table.
updaterbatchid String The 'updaterbatchid' column for the 'updaterdetail' table.
createdbyid String The 'createdbyid' column for the 'updaterdetail' table.
cardtype String The 'cardtype' column for the 'updaterdetail' table.
retrieveresponsemessage String The 'retrieveresponsemessage' column for the 'updaterdetail' table.
submitresponsemessage String The 'submitresponsemessage' column for the 'updaterdetail' table.
newcardnumbermasked String The 'newcardnumbermasked' column for the 'updaterdetail' table.
recordid String The 'recordid' column for the 'updaterdetail' table.
newcardexpirationmonth String The 'newcardexpirationmonth' column for the 'updaterdetail' table.
newcardtype String The 'newcardtype' column for the 'updaterdetail' table.
status String The 'status' column for the 'updaterdetail' table.
billingaccountid String The 'billingaccountid' column for the 'updaterdetail' table.
retrieveresponsecode String The 'retrieveresponsecode' column for the 'updaterdetail' table.
updatedbyid String The 'updatedbyid' column for the 'updaterdetail' table.
retrieverequesttransactionlog String The 'retrieverequesttransactionlog' column for the 'updaterdetail' table.
cardnumbermasked String The 'cardnumbermasked' column for the 'updaterdetail' table.
updatetype String The 'updatetype' column for the 'updaterdetail' table.
transactionid String The 'transactionid' column for the 'updaterdetail' table.
submittedresponsetime Datetime The 'submittedresponsetime' column for the 'updaterdetail' table.
ispaymentmethodupdated Bool The 'ispaymentmethodupdated' column for the 'updaterdetail' table.
submitresponsecode String The 'submitresponsecode' column for the 'updaterdetail' table.
cardexpirationyear String The 'cardexpirationyear' column for the 'updaterdetail' table.
createddate Datetime The 'createddate' column for the 'updaterdetail' table.
submitrequesttransactionlog String The 'submitrequesttransactionlog' column for the 'updaterdetail' table.
id String The 'id' column for the 'updaterdetail' table.

Zuora Connector for CData Sync

Usage

A usage record.f the Active Rating feature is enabled, each row represents a usage record that was created via the Active Rating feature.

Columns

Name Type Description
rbestatus String The 'rbestatus' column for the 'usage' table.
accountid String The 'accountid' column for the 'usage' table.
description String The 'description' column for the 'usage' table.
rateplanchargeid String The 'rateplanchargeid' column for the 'usage' table.
updateddate Datetime The 'updateddate' column for the 'usage' table.
updatedbyid String The 'updatedbyid' column for the 'usage' table.
sourcetype String The 'sourcetype' column for the 'usage' table.
quantity Decimal The 'quantity' column for the 'usage' table.
importid String The 'importid' column for the 'usage' table.
accountnumber String The 'accountnumber' column for the 'usage' table.
submissiondatetime Datetime The 'submissiondatetime' column for the 'usage' table.
uom String The 'uom' column for the 'usage' table.
startdatetime Datetime The 'startdatetime' column for the 'usage' table.
subscriptionid String The 'subscriptionid' column for the 'usage' table.
createdbyid String The 'createdbyid' column for the 'usage' table.
enddatetime Datetime The 'enddatetime' column for the 'usage' table.
createddate Datetime The 'createddate' column for the 'usage' table.
id String The 'id' column for the 'usage' table.

Zuora Connector for CData Sync

User

A user in your Zuora tenant. Only platform admin users can access this table.

Columns

Name Type Description
email String The 'email' column for the 'user' table.
username String The 'username' column for the 'user' table.
firstname String The 'firstname' column for the 'user' table.
createddate Datetime The 'createddate' column for the 'user' table.
id String The 'id' column for the 'user' table.
lastname String The 'lastname' column for the 'user' table.

Zuora Connector for CData Sync

Connection String Options

The connection string properties are the various options that can be used to establish a connection. This section provides a complete list of the options you can configure in the connection string for this provider. Click the links for further details.

For more information on establishing a connection, see Establishing a Connection.

Authentication


PropertyDescription
TenantThe Tenant type of your hosted application.
URLThe URL of the US Production Copy environment.

Connection


PropertyDescription
ZuoraServiceSpecifies which execution service or schema to use. You can find more details in the Establishing a Connection section.

OAuth


PropertyDescription
OAuthClientIdSpecifies the client Id that was assigned the custom OAuth application was created. (Also known as the consumer key.) This ID registers the custom application with the OAuth authorization server.
OAuthClientSecretSpecifies the client secret that was assigned when the custom OAuth application was created. (Also known as the consumer secret ). This secret registers the custom application with the OAuth authorization server.

SSL


PropertyDescription
SSLServerCertSpecifies the certificate to be accepted from the server when connecting using TLS/SSL.

Firewall


PropertyDescription
FirewallTypeSpecifies the protocol the provider uses to tunnel traffic through a proxy-based firewall.
FirewallServerIdentifies the IP address, DNS name, or host name of a proxy used to traverse a firewall and relay user queries to network resources.
FirewallPortSpecifies the TCP port to be used for a proxy-based firewall.
FirewallUserIdentifies the user ID of the account authenticating to a proxy-based firewall.
FirewallPasswordSpecifies the password of the user account authenticating to a proxy-based firewall.

Proxy


PropertyDescription
ProxyAutoDetectSpecifies whether the provider checks your system proxy settings for existing proxy server configurations, rather than using a manually specified proxy server.
ProxyServerThe hostname or IP address of the proxy server that you want to route HTTP traffic through.
ProxyPortThe TCP port on your specified proxy server (set in the ProxyServer connection property) that has been reserved for routing HTTP traffic to and from the client.
ProxyAuthSchemeSpecifies the authentication method the provider uses when authenticating to the proxy server specified in the ProxyServer connection property.
ProxyUserThe username of a user account registered with the proxy server specified in the ProxyServer connection property.
ProxyPasswordThe password associated with the user specified in the ProxyUser connection property.
ProxySSLTypeThe SSL type to use when connecting to the proxy server specified in the ProxyServer connection property.
ProxyExceptionsA semicolon separated list of destination hostnames or IPs that are exempt from connecting through the proxy server set in the ProxyServer connection property.

Logging


PropertyDescription
LogModulesSpecifies the core modules to include in the log file. Use a semicolon-separated list of module names. By default, all modules are logged.

Schema


PropertyDescription
LocationSpecifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.
BrowsableSchemasOptional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .
TablesOptional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC .
ViewsOptional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC .

Miscellaneous


PropertyDescription
AsyncQueryTimeoutThe timeout in minutes for which the provider will wait for an async query response. The default value is 20 minutes.
ConvertToCurrenciesSpecifiy a list of comma delimited currencies to convert your amounts. Example: 'EUR,USD'.
MaxRowsSpecifies the maximum rows returned for queries without aggregation or GROUP BY.
OtherSpecifies additional hidden properties for specific use cases. These are not required for typical provider functionality. Use a semicolon-separated list to define multiple properties.
PseudoColumnsSpecifies the pseudocolumns to expose as table columns. Use the format 'TableName=ColumnName;TableName=ColumnName'. The default is an empty string, which disables this property.
TimeoutSpecifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. The default is 60 seconds. Set to 0 to disable the timeout.
UserDefinedViewsSpecifies a filepath to a JSON configuration file defining custom views. The provider automatically detects and uses the views specified in this file.
Zuora Connector for CData Sync

Authentication

This section provides a complete list of the Authentication properties you can configure in the connection string for this provider.


PropertyDescription
TenantThe Tenant type of your hosted application.
URLThe URL of the US Production Copy environment.
Zuora Connector for CData Sync

Tenant

The Tenant type of your hosted application.

Remarks

  • USProduction: Requests sent to https://rest.zuora.com.
  • USAPISandbox: Requests sent to https://rest.apisandbox.zuora.com.
  • USPerformanceTest: Requests sent to https://rest.pt1.zuora.com.
  • USCloudProduction: Requests sent to https://rest.na.zuora.com.
  • USCloudAPISandbox: Requests sent to https://rest.sandbox.na.zuora.com.
  • USCentralSandbox: Requests sent to https://rest.test.zuora.com.
  • EUProduction: Requests sent to https://rest.eu.zuora.com.
  • EUSandbox: Requests sent to https://rest.sandbox.eu.zuora.com.
  • EUCentralSandbox: Requests sent to https://rest.test.eu.zuora.com.

Zuora Connector for CData Sync

URL

The URL of the US Production Copy environment.

Remarks

The URL of the US Production Copy environment.

Zuora Connector for CData Sync

Connection

This section provides a complete list of the Connection properties you can configure in the connection string for this provider.


PropertyDescription
ZuoraServiceSpecifies which execution service or schema to use. You can find more details in the Establishing a Connection section.
Zuora Connector for CData Sync

ZuoraService

Specifies which execution service or schema to use. You can find more details in the Establishing a Connection section.

Remarks

The available options are:

  • DataQuery: Used for quick lightweight SQL queries to export data from your Zuora tenant.
  • AQuADataExport: Used for extracting all records from all tables. AQuADataExport objects and fields correspond to the latest version of the Zuora WSDL.

Zuora Connector for CData Sync

OAuth

This section provides a complete list of the OAuth properties you can configure in the connection string for this provider.


PropertyDescription
OAuthClientIdSpecifies the client Id that was assigned the custom OAuth application was created. (Also known as the consumer key.) This ID registers the custom application with the OAuth authorization server.
OAuthClientSecretSpecifies the client secret that was assigned when the custom OAuth application was created. (Also known as the consumer secret ). This secret registers the custom application with the OAuth authorization server.
Zuora Connector for CData Sync

OAuthClientId

Specifies the client Id that was assigned the custom OAuth application was created. (Also known as the consumer key.) This ID registers the custom application with the OAuth authorization server.

Remarks

OAuthClientId is one of a handful of connection parameters that need to be set before users can authenticate via OAuth. For details, see Establishing a Connection.

Zuora Connector for CData Sync

OAuthClientSecret

Specifies the client secret that was assigned when the custom OAuth application was created. (Also known as the consumer secret ). This secret registers the custom application with the OAuth authorization server.

Remarks

OAuthClientSecret is one of a handful of connection parameters that need to be set before users can authenticate via OAuth. For details, see Establishing a Connection.

Zuora Connector for CData Sync

SSL

This section provides a complete list of the SSL properties you can configure in the connection string for this provider.


PropertyDescription
SSLServerCertSpecifies the certificate to be accepted from the server when connecting using TLS/SSL.
Zuora Connector for CData Sync

SSLServerCert

Specifies the certificate to be accepted from the server when connecting using TLS/SSL.

Remarks

If using a TLS/SSL connection, this property can be used to specify the TLS/SSL certificate to be accepted from the server. Any other certificate that is not trusted by the machine is rejected.

This property can take the following forms:

Description Example
A full PEM Certificate (example shortened for brevity) -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE-----
A path to a local file containing the certificate C:\cert.cer
The public key (example shortened for brevity) -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY-----
The MD5 Thumbprint (hex values can also be either space or colon separated) ecadbdda5a1529c58a1e9e09828d70e4
The SHA1 Thumbprint (hex values can also be either space or colon separated) 34a929226ae0819f2ec14b4a3d904f801cbb150d

If not specified, any certificate trusted by the machine is accepted.

Use '*' to signify to accept all certificates. Note that this is not recommended due to security concerns.

Zuora Connector for CData Sync

Firewall

This section provides a complete list of the Firewall properties you can configure in the connection string for this provider.


PropertyDescription
FirewallTypeSpecifies the protocol the provider uses to tunnel traffic through a proxy-based firewall.
FirewallServerIdentifies the IP address, DNS name, or host name of a proxy used to traverse a firewall and relay user queries to network resources.
FirewallPortSpecifies the TCP port to be used for a proxy-based firewall.
FirewallUserIdentifies the user ID of the account authenticating to a proxy-based firewall.
FirewallPasswordSpecifies the password of the user account authenticating to a proxy-based firewall.
Zuora Connector for CData Sync

FirewallType

Specifies the protocol the provider uses to tunnel traffic through a proxy-based firewall.

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

Note: By default, the Sync App connects to the system proxy. To disable this behavior and connect to one of the following proxy types, set ProxyAutoDetect to false.

The following table provides port number information for each of the supported protocols.

Protocol Default Port Description
TUNNEL 80 The port where the Sync App opens a connection to Zuora. Traffic flows back and forth via the proxy at this location.
SOCKS4 1080 The port where the Sync App opens a connection to Zuora. SOCKS 4 then passes theFirewallUser value to the proxy, which determines whether the connection request should be granted.
SOCKS5 1080 The port where the Sync App sends data to Zuora. If the SOCKS 5 proxy requires authentication, set FirewallUser and FirewallPassword to credentials the proxy recognizes.

To connect to HTTP proxies, use ProxyServer and ProxyPort. To authenticate to HTTP proxies, use ProxyAuthScheme, ProxyUser, and ProxyPassword.

Zuora Connector for CData Sync

FirewallServer

Identifies the IP address, DNS name, or host name of a proxy used to traverse a firewall and relay user queries to network resources.

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

Zuora Connector for CData Sync

FirewallPort

Specifies the TCP port to be used for a proxy-based firewall.

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

Zuora Connector for CData Sync

FirewallUser

Identifies the user ID of the account authenticating to a proxy-based firewall.

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

Zuora Connector for CData Sync

FirewallPassword

Specifies the password of the user account authenticating to a proxy-based firewall.

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

Zuora Connector for CData Sync

Proxy

This section provides a complete list of the Proxy properties you can configure in the connection string for this provider.


PropertyDescription
ProxyAutoDetectSpecifies whether the provider checks your system proxy settings for existing proxy server configurations, rather than using a manually specified proxy server.
ProxyServerThe hostname or IP address of the proxy server that you want to route HTTP traffic through.
ProxyPortThe TCP port on your specified proxy server (set in the ProxyServer connection property) that has been reserved for routing HTTP traffic to and from the client.
ProxyAuthSchemeSpecifies the authentication method the provider uses when authenticating to the proxy server specified in the ProxyServer connection property.
ProxyUserThe username of a user account registered with the proxy server specified in the ProxyServer connection property.
ProxyPasswordThe password associated with the user specified in the ProxyUser connection property.
ProxySSLTypeThe SSL type to use when connecting to the proxy server specified in the ProxyServer connection property.
ProxyExceptionsA semicolon separated list of destination hostnames or IPs that are exempt from connecting through the proxy server set in the ProxyServer connection property.
Zuora Connector for CData Sync

ProxyAutoDetect

Specifies whether the provider checks your system proxy settings for existing proxy server configurations, rather than using a manually specified proxy server.

Remarks

When this connection property is set to True, the Sync App checks your system proxy settings for existing proxy server configurations (no need to manually supply proxy server details).

This connection property takes precedence over other proxy settings. Set to False if you want to manually configure the Sync App to connect to a specific proxy server.

To connect to an HTTP proxy, see ProxyServer. For other proxies, such as SOCKS or tunneling, see FirewallType.

Zuora Connector for CData Sync

ProxyServer

The hostname or IP address of the proxy server that you want to route HTTP traffic through.

Remarks

The Sync App only routes HTTP traffic through the proxy server specified in this connection property when ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True, which is the default, the Sync App instead routes HTTP traffic through the proxy server specified in your system proxy settings.

Zuora Connector for CData Sync

ProxyPort

The TCP port on your specified proxy server (set in the ProxyServer connection property) that has been reserved for routing HTTP traffic to and from the client.

Remarks

The Sync App only routes HTTP traffic through the proxy server port specified in this connection property when ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True, which is the default, the Sync App instead routes HTTP traffic through the proxy server port specified in your system proxy settings.

For other proxy types, see FirewallType.

Zuora Connector for CData Sync

ProxyAuthScheme

Specifies the authentication method the provider uses when authenticating to the proxy server specified in the ProxyServer connection property.

Remarks

The authentication type can be one of the following:

  • BASIC: The Sync App performs HTTP BASIC authentication.
  • DIGEST: The Sync App performs HTTP DIGEST authentication.
  • NTLM: The Sync App retrieves an NTLM token.
  • NEGOTIATE: The Sync App retrieves an NTLM or Kerberos token based on the applicable protocol for authentication.
  • NONE: Set this when the ProxyServer does not require authentication.

For all values other than "NONE", you must also set the ProxyUser and ProxyPassword connection properties.

If you need to use another authentication type, such as SOCKS 5 authentication, see FirewallType.

Zuora Connector for CData Sync

ProxyUser

The username of a user account registered with the proxy server specified in the ProxyServer connection property.

Remarks

The ProxyUser and ProxyPassword connection properties are used to connect and authenticate against the HTTP proxy specified in ProxyServer.

After selecting one of the available authentication types in ProxyAuthScheme, set this property as follows:

ProxyAuthScheme Value Value to set for ProxyUser
BASIC The user name of a user registered with the proxy server.
DIGEST The user name of a user registered with the proxy server.
NEGOTIATE The username of a Windows user who is a valid user in the domain or trusted domain that the proxy server is part of, in the format user@domain or domain\user.
NTLM The username of a Windows user who is a valid user in the domain or trusted domain that the proxy server is part of, in the format user@domain or domain\user.
NONE Do not set the ProxyPassword connection property.

The Sync App only uses this username if ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True, which is the default, the Sync App instead uses the username specified in your system proxy settings.

Zuora Connector for CData Sync

ProxyPassword

The password associated with the user specified in the ProxyUser connection property.

Remarks

The ProxyUser and ProxyPassword connection properties are used to connect and authenticate against the HTTP proxy specified in ProxyServer.

After selecting one of the available authentication types in ProxyAuthScheme, set this property as follows:

ProxyAuthScheme Value Value to set for ProxyPassword
BASIC The password associated with the proxy server user specified in ProxyUser.
DIGEST The password associated with the proxy server user specified in ProxyUser.
NEGOTIATE The password associated with the Windows user account specified in ProxyUser.
NTLM The password associated with the Windows user account specified in ProxyUser.
NONE Do not set the ProxyPassword connection property.

For SOCKS 5 authentication or tunneling, see FirewallType.

The Sync App only uses this password if ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True, which is the default, the Sync App instead uses the password specified in your system proxy settings.

Zuora Connector for CData Sync

ProxySSLType

The SSL type to use when connecting to the proxy server specified in the ProxyServer connection property.

Remarks

This property determines when to use SSL for the connection to the HTTP proxy specified by ProxyServer. You can set this connection property to the following values :

AUTODefault setting. If ProxyServer is set to an HTTPS URL, the Sync App uses the TUNNEL option. If ProxyServer is set to an HTTP URL, the component uses the NEVER option.
ALWAYSThe connection is always SSL enabled.
NEVERThe connection is not SSL enabled.
TUNNELThe connection is made through a tunneling proxy. The proxy server opens a connection to the remote host and traffic flows back and forth through the proxy.

Zuora Connector for CData Sync

ProxyExceptions

A semicolon separated list of destination hostnames or IPs that are exempt from connecting through the proxy server set in the ProxyServer connection property.

Remarks

The ProxyServer is used for all addresses, except for addresses defined in this property. Use semicolons to separate entries.

Note that the Sync App uses the system proxy settings by default, without further configuration needed. If you want to explicitly configure proxy exceptions for this connection, set ProxyAutoDetect to False.

Zuora Connector for CData Sync

Logging

This section provides a complete list of the Logging properties you can configure in the connection string for this provider.


PropertyDescription
LogModulesSpecifies the core modules to include in the log file. Use a semicolon-separated list of module names. By default, all modules are logged.
Zuora Connector for CData Sync

LogModules

Specifies the core modules to include in the log file. Use a semicolon-separated list of module names. By default, all modules are logged.

Remarks

This property lets you customize the log file content by specifying the logging modules to include. Logging modules categorize logged information into distinct areas, such as query execution, metadata, or SSL communication. Each module is represented by a four-character code, with some requiring a trailing space for three-letter names.

For example, EXEC logs query execution, and INFO logs general provider messages. To include multiple modules, separate their names with semicolons as follows: INFO;EXEC;SSL.

The Verbosity connection property takes precedence over the module-based filtering specified by this property. Only log entries that meet the verbosity level and belong to the specified modules are logged. Leave this property blank to include all available modules in the log file.

For a complete list of available modules and detailed guidance on configuring logging, refer to the Advanced Logging section in Logging.

Zuora Connector for CData Sync

Schema

This section provides a complete list of the Schema properties you can configure in the connection string for this provider.


PropertyDescription
LocationSpecifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.
BrowsableSchemasOptional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .
TablesOptional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC .
ViewsOptional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC .
Zuora Connector for CData Sync

Location

Specifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.

Remarks

The Location property is only needed if you want to either customize definitions (for example, change a column name, ignore a column, etc.) or extend the data model with new tables, views, or stored procedures.

If left unspecified, the default location is %APPDATA%\\CData\\Zuora Data Provider\\Schema, where %APPDATA% is set to the user's configuration directory:

Platform %APPDATA%
Windows The value of the APPDATA environment variable
Linux ~/.config

Zuora Connector for CData Sync

BrowsableSchemas

Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .

Remarks

Listing all available database schemas can take extra time, thus degrading performance. Providing a list of schemas in the connection string saves time and improves performance.

Zuora Connector for CData Sync

Tables

Optional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC .

Remarks

Listing all available tables from some databases can take extra time, thus degrading performance. Providing a list of tables in the connection string saves time and improves performance.

If there are lots of tables available and you already know which ones you want to work with, you can use this property to restrict your viewing to only those tables. To do this, specify the tables you want in a comma-separated list. Each table should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Tables=TableA,[TableB/WithSlash],WithCatalog.WithSchema.`TableC With Space`.

Note: If you are connecting to a data source with multiple schemas or catalogs, you must specify each table you want to view by its fully qualified name. This avoids ambiguity between tables that may exist in multiple catalogs or schemas.

Zuora Connector for CData Sync

Views

Optional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC .

Remarks

Listing all available views from some databases can take extra time, thus degrading performance. Providing a list of views in the connection string saves time and improves performance.

If there are lots of views available and you already know which ones you want to work with, you can use this property to restrict your viewing to only those views. To do this, specify the views you want in a comma-separated list. Each view should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Views=ViewA,[ViewB/WithSlash],WithCatalog.WithSchema.`ViewC With Space`.

Note: If you are connecting to a data source with multiple schemas or catalogs, you must specify each view you want to examine by its fully qualified name. This avoids ambiguity between views that may exist in multiple catalogs or schemas.

Zuora Connector for CData Sync

Miscellaneous

This section provides a complete list of the Miscellaneous properties you can configure in the connection string for this provider.


PropertyDescription
AsyncQueryTimeoutThe timeout in minutes for which the provider will wait for an async query response. The default value is 20 minutes.
ConvertToCurrenciesSpecifiy a list of comma delimited currencies to convert your amounts. Example: 'EUR,USD'.
MaxRowsSpecifies the maximum rows returned for queries without aggregation or GROUP BY.
OtherSpecifies additional hidden properties for specific use cases. These are not required for typical provider functionality. Use a semicolon-separated list to define multiple properties.
PseudoColumnsSpecifies the pseudocolumns to expose as table columns. Use the format 'TableName=ColumnName;TableName=ColumnName'. The default is an empty string, which disables this property.
TimeoutSpecifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. The default is 60 seconds. Set to 0 to disable the timeout.
UserDefinedViewsSpecifies a filepath to a JSON configuration file defining custom views. The provider automatically detects and uses the views specified in this file.
Zuora Connector for CData Sync

AsyncQueryTimeout

The timeout in minutes for which the provider will wait for an async query response. The default value is 20 minutes.

Remarks

The timeout in minutes for which the Sync App will wait for an async query response. The default value is 20 minutes. When running a SELECT query, the Sync App starts an asynchronous job. It then waits for the response to be ready by periodically polling the server to check status. This property controls the total time the Sync App will wait for a response.

Note that this property is very different from Timeout. The Timeout is an inactivity timeout that controls the time to wait for any response. This property controls the total length of time to wait for an async query to execute.

Zuora Connector for CData Sync

ConvertToCurrencies

Specifiy a list of comma delimited currencies to convert your amounts. Example: 'EUR,USD'.

Remarks

You can specify any number of currencies. Specify the currencies using their ISO currency codes and separate each currency with a comma.

Zuora Connector for CData Sync

MaxRows

Specifies the maximum rows returned for queries without aggregation or GROUP BY.

Remarks

This property sets an upper limit on the number of rows the Sync App returns for queries that do not include aggregation or GROUP BY clauses. This limit ensures that queries do not return excessively large result sets by default.

When a query includes a LIMIT clause, the value specified in the query takes precedence over the MaxRows setting. If MaxRows is set to "-1", no row limit is enforced unless a LIMIT clause is explicitly included in the query.

This property is useful for optimizing performance and preventing excessive resource consumption when executing queries that could otherwise return very large datasets.

Zuora Connector for CData Sync

Other

Specifies additional hidden properties for specific use cases. These are not required for typical provider functionality. Use a semicolon-separated list to define multiple properties.

Remarks

This property allows advanced users to configure hidden properties for specialized scenarios. These settings are not required for normal use cases but can address unique requirements or provide additional functionality. Multiple properties can be defined in a semicolon-separated list.

Note: It is strongly recommended to set these properties only when advised by the support team to address specific scenarios or issues.

Specify multiple properties in a semicolon-separated list.

Integration and Formatting

DefaultColumnSizeSets the default length of string fields when the data source does not provide column length in the metadata. The default value is 2000.
ConvertDateTimeToGMTDetermines whether to convert date-time values to GMT, instead of the local time of the machine.
RecordToFile=filenameRecords the underlying socket data transfer to the specified file.

Zuora Connector for CData Sync

PseudoColumns

Specifies the pseudocolumns to expose as table columns. Use the format 'TableName=ColumnName;TableName=ColumnName'. The default is an empty string, which disables this property.

Remarks

This property allows you to define which pseudocolumns the Sync App exposes as table columns.

To specify individual pseudocolumns, use the following format: "Table1=Column1;Table1=Column2;Table2=Column3"

To include all pseudocolumns for all tables use: "*=*"

Zuora Connector for CData Sync

Timeout

Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error. The default is 60 seconds. Set to 0 to disable the timeout.

Remarks

This property controls the maximum time, in seconds, that the Sync App waits for an operation to complete before canceling it. If the timeout period expires before the operation finishes, the Sync App cancels the operation and throws an exception.

The timeout applies to each individual communication with the server rather than the entire query or operation. For example, a query could continue running beyond 60 seconds if each paging call completes within the timeout limit.

Setting this property to 0 disables the timeout, allowing operations to run indefinitely until they succeed or fail due to other conditions such as server-side timeouts, network interruptions, or resource limits on the server. Use this property cautiously to avoid long-running operations that could degrade performance or result in unresponsive behavior.

Zuora Connector for CData Sync

UserDefinedViews

Specifies a filepath to a JSON configuration file defining custom views. The provider automatically detects and uses the views specified in this file.

Remarks

This property allows you to define and manage custom views through a JSON-formatted configuration file called UserDefinedViews.json. These views are automatically recognized by the Sync App and enable you to execute custom SQL queries as if they were standard database views. The JSON file defines each view as a root element with a child element called "query", which contains the SQL query for the view. For example:


{
	"MyView": {
		"query": "SELECT * FROM SampleTable_1 WHERE MyColumn = 'value'"
	},
	"MyView2": {
		"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
	}
}

You can define multiple views in a single file and specify the filepath using this property. For example: UserDefinedViews=C:\Path\To\UserDefinedViews.json. When you use this property, only the specified views are seen by the Sync App.

Refer to User Defined Views for more information.

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 24.0.9175