StoreCreditAccountDebitTransactions
Records debit transactions that decrease store credit balances, such as purchases or redemptions.
Table-Specific Information
Select
The connector uses the Shopify API to process WHERE clause conditions built with the following columns and operators. The connector processes other filters client-side within the connector.
- Id supports the '=, IN' comparison operators.
- CustomerStoreCreditAccountId supports the '=, IN' comparison operators.
For example, the following queries are processed server-side:
SELECT * FROM StoreCreditAccountDebitTransactions WHERE Id = 'Val1'
SELECT * FROM StoreCreditAccountDebitTransactions WHERE CustomerStoreCreditAccountId = 'Val1'
Insert
The following columns can be used to create a new record:
Amount, AmountCurrencyCode, CustomerStoreCreditAccountId
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
A globally unique identifier for the debit transaction record. | |
| Amount | Decimal | True |
The monetary value deducted from the customer's store credit balance, represented as a decimal money amount. | |
| AmountCurrencyCode | String | True |
The three-letter ISO currency code representing the currency of the debit amount (for example, USD or EUR). | |
| BalanceAfterTransactionAmount | Decimal | True |
The customer's remaining store credit balance immediately after this debit transaction, expressed as a decimal money amount. | |
| BalanceAfterTransactionCurrencyCode | String | True |
The three-letter ISO currency code corresponding to the store credit balance after the debit transaction. | |
| CreatedAt | Datetime | True |
The date and time when the debit transaction was created and recorded in the system. | |
| CustomerStoreCreditAccountId | String | True |
The globally unique identifier of the customer's store credit account associated with this debit transaction. |