BankAccountData
idUnique identifier for the account
workspace_idWorkspace ID the account belongs to
typeAccount type
nameAccount name
created_atCreation timestamp
updated_atLast update timestamp
bank_nameName of the financial institution
bank_code_typeType of bank code (e.g., SWIFT, BIC, IBAN, ROUTING, SORT_CODE)
bank_identifier_codeBank identifier code value
tenant_idTenant ID (if account belongs to a tenant)
counterparty_idCounterparty ID (if account belongs to a counterparty)
bank_swift_codeSWIFT code
bank_account_numberBank account number (masked, only with include_secure=true)
LedgerAssetDto
currencyCurrency symbol
available_balanceAvailable balance in smallest unit
LedgerAccountData
idUnique identifier for the account
workspace_idWorkspace ID the account belongs to
typeAccount type
nameAccount name
created_atCreation timestamp
updated_atLast update timestamp
providerLiquidity provider that manages this ledger account
tenant_idTenant ID (if account belongs to a tenant)
counterparty_idCounterparty ID (if account belongs to a counterparty)
Ledger assets with balances
WalletAssetDto
currencyCurrency symbol
networkBlockchain network
available_balanceAvailable balance in smallest unit
WalletAccountData
idUnique identifier for the account
workspace_idWorkspace ID the account belongs to
typeAccount type
nameAccount name
created_atCreation timestamp
updated_atLast update timestamp
crypto_wallet_addressBlockchain wallet address
is_managedWhether this is a managed wallet (provisioned by Tesser), or unmanaged (not provisioned by Tesser)
tenant_idTenant ID (if account belongs to a tenant)
counterparty_idCounterparty ID (if account belongs to a counterparty)
Wallet assets with balances
AccountAssetDto
currencyCurrency symbol
available_balanceAvailable balance in smallest unit
networkBlockchain network (only for wallet accounts)
AccountData
idUnique identifier for the account
workspace_idWorkspace ID the account belongs to
typeAccount type
nameAccount name
created_atCreation timestamp
updated_atLast update timestamp
tenant_idTenant ID (if account belongs to a tenant)
counterparty_idCounterparty ID (if account belongs to a counterparty)
bank_nameBank name (only for fiat_bank accounts)
bank_code_typeBank code type (only for fiat_bank accounts)
bank_identifier_codeBank identifier code (only for fiat_bank accounts)
bank_swift_codeSWIFT code (only for fiat_bank accounts)
bank_account_numberBank account number (masked, only with include_secure=true)
crypto_wallet_addressCrypto wallet address (only for wallet accounts)
is_managedIs managed wallet (only for wallet accounts)
providerLedger provider (only for ledger accounts)
Account assets with balances (for wallet and ledger accounts)
Pagination
pageCurrent page number.
limitNumber of items per page.
totalTotal number of items.
total_pagesTotal number of pages.
has_nextWhether there is a next page.
has_prevWhether there is a previous page.
CreateBankAccountRequestDto
nameHuman-readable name for the bank account
bank_nameName of the financial institution
bank_code_typeType of bank code (e.g., SWIFT, BIC, IBAN, ROUTING, SORT_CODE)
bank_identifier_codeBank identifier code value
bank_account_numberBank account number. SECURE FIELD: Encrypted and stored in vault, never returned in responses. Required in API request.
tenant_id^([0-9a-fA-F]{8}-[0-…Tenant ID (mutually exclusive with counterparty_id). Links this account to a specific tenant.
counterparty_id^([0-9a-fA-F]{8}-[0-…Counterparty ID (mutually exclusive with tenant_id). Links this account to a specific counterparty.
bank_swift_codeSWIFT code
CreateWalletAccountRequestDto
nameHuman-readable name for the wallet account
typeStablecoin network type. Determines which blockchain network the wallet operates on.
tenant_id^([0-9a-fA-F]{8}-[0-…Tenant ID (mutually exclusive with counterparty_id). Links this wallet to a specific tenant.
counterparty_id^([0-9a-fA-F]{8}-[0-…Counterparty ID (mutually exclusive with tenant_id). Links this wallet to a specific counterparty.
signatureA cryptographic stamp used to verify the integrity and authenticity of the request. This ensures the request was signed by an authorized key. Required for managed wallets (is_managed=true). See Documentation > Signing for more details.
is_managedWhether this is a managed wallet (provisioned by Tesser), or unmanaged (not provisioned by Tesser). Managed wallets (true) require a signature and automatically create USDC/USDT assets. Unmanaged wallets (false) require a wallet_address. Defaults to false.
wallet_addressBlockchain wallet address. Required for unmanaged wallets (is_managed=false). Auto-generated for managed wallets.
CreateLedgerAccountRequestDto
nameHuman-readable name for the ledger account
providerLiquidity provider that manages this ledger account. CIRCLE_MINT for Circle Mint accounts, KRAKEN for Kraken exchange accounts.
tenant_id^([0-9a-fA-F]{8}-[0-…Tenant ID (mutually exclusive with counterparty_id). Links this ledger account to a specific tenant.
counterparty_id^([0-9a-fA-F]{8}-[0-…Counterparty ID (mutually exclusive with tenant_id). Links this ledger account to a specific counterparty.
Currency
nameDisplay name for the currency (e.g., 'Circle USD')
keyCurrency code/key (e.g., 'USDC', 'USD')
decimalsNumber of decimal places for the currency
networkBlockchain network (e.g., 'POLYGON') or null for fiat currencies. See GET /networks for supported values.
Network
keyNetwork key/identifier (e.g., 'POLYGON', 'POLYGON_AMOY')
nameDisplay name for the network (e.g., 'Polygon')
CounterpartyData
idUnique identifier for the counterparty
workspace_idWorkspace ID the counterparty belongs to
classificationClassification: individual (person) or business (company)
created_atCreation timestamp in ISO 8601 format
updated_atLast update timestamp in ISO 8601 format
tenant_idOptional reference to a tenant entity this counterparty belongs to
individual_first_nameFirst name (for individuals)
individual_last_nameLast name (for individuals)
individual_address_countryCountry code in ISO 3166-1 format (for individuals)
individual_date_of_birthDate of birth (for individuals)
individual_national_identification_numberNational identification number (for individuals)
individual_street_address1Street address line 1 (for individuals)
individual_street_address2Street address line 2 (for individuals)
individual_cityCity (for individuals)
individual_stateState/region (for individuals)
individual_postal_codePostal code (for individuals)
business_legal_nameLegal business name (for businesses)
business_dbaDBA - Doing Business As (for businesses)
business_address_countryCountry code in ISO 3166-1 format (for businesses)
business_street_address1Street address line 1 (for businesses)
business_street_address2Street address line 2 (for businesses)
business_cityCity (for businesses)
business_stateState/region (for businesses)
business_legal_entity_identifierLegal Entity Identifier (for businesses)
CreateCounterpartyRequestDto
classificationClassification: 'individual' or 'business'.
tenant_id^([0-9a-fA-F]{8}-[0-…ID of the tenant entity (optional).
individual_first_nameFirst name (required if classification is 'individual'). Secure field, returned based on include_secure.
individual_last_nameLast name (required if classification is 'individual'). Secure field, returned based on include_secure.
individual_address_country^[A-Za-z]{2,3}$ISO 3166-1 alpha-2 or alpha-3 country code.
individual_date_of_birthDate of birth (for individuals).
individual_national_identification_numberNational identification number (for individuals). Secure field, returned based on include_secure.
individual_street_address1Street address line 1 (for individuals). Secure field, returned based on include_secure.
individual_street_address2Street address line 2 (for individuals). Secure field, returned based on include_secure.
individual_cityCity (for individuals). Secure field, returned based on include_secure.
individual_stateState/region (for individuals). Secure field, returned based on include_secure.
individual_postal_codePostal code (for individuals). Secure field, returned based on include_secure.
business_legal_nameLegal business name (required if classification is 'business').
business_dbaDoing Business As name (optional).
business_address_country^[A-Za-z]{2,3}$ISO 3166-1 alpha-2 or alpha-3 country code.
business_street_address1Street address line 1 (for businesses).
business_street_address2Street address line 2 (for businesses).
business_cityCity (for businesses).
business_stateState/region (for businesses).
business_legal_entity_identifierLegal Entity Identifier (for businesses). Secure field, returned based on include_secure.
TenantData
idUnique identifier for the tenant
workspace_idWorkspace ID the tenant belongs to
nameDisplay name derived from business fields
created_atCreation timestamp in ISO 8601 format
updated_atLast update timestamp in ISO 8601 format
business_legal_nameLegal business name
business_dbaDBA - Doing Business As
business_address_countryCountry code in ISO 3166-1 format
webhook_urlWebhook URL for payment creation notifications
business_street_address1Street address line 1
business_street_address2Street address line 2
business_cityCity
business_stateState/region
business_postal_codePostal code
business_legal_entity_identifierLegal Entity Identifier
CreateTenantRequestDto
business_legal_nameLegal business name (required)
business_dbaDBA - Doing Business As name
business_address_country^[A-Za-z]{2,3}$Country code in ISO 3166-1 alpha-2 or alpha-3 format
webhook_urlWebhook URL for payment creation notifications
business_street_address1Street address line 1
business_street_address2Street address line 2
business_cityCity
business_stateState/region
business_postal_codePostal code
business_legal_entity_identifierLegal Entity Identifier
CreateApiKeyRequestDto
namedescriptionApiKeyDto
id^([0-9a-fA-F]{8}-[0-… · requirednamedescriptionmaskedClientIdstatuslastUsedAt^(?:(?:\d\d[2468][04… · requiredcreatedAt^(?:(?:\d\d[2468][04… · requiredupdatedAt^(?:(?:\d\d[2468][04… · requiredOrgUserDto
idemailfirstNamelastNamerolestatuslastActiveAtcreatedAtupdatedAtCreateUserRequestDto
email^(?!\.)(?!.*\.\.)([A… · requiredfirstNamelastNameroleUpdateUserRequestDto
firstNamelastNamerolestatusUpdateRiskProfileRequest
riskProfileThe risk profile for compliance screening
UpdateRiskProfileResponse
riskProfileNew risk profile
oldRiskProfilePrevious risk profile
updatedAt^(?:(?:\d\d[2468][04… · requiredTimestamp of the update
RiskProfileResponse
riskProfileCurrent risk profile
CreateSecretRequest
providerThe secret provider (CIRCLE_MINT or OPENFX)
keyThe secret key name (must be a known organization secret key)
Secret payload. A string for single-value secrets, or an object for bundled credentials (e.g., OPENFX_CREDENTIALS).
CreateSecretResponse
successWhether the secret was stored successfully
maskedValueMasked version of the stored secret (e.g., '****abc123')
SignupRequestDto
entityNameemail^(?!\.)(?!.*\.\.)([A… · requiredUserProfileDto
idemailteamIdcreatedAtupdatedAtTeamDto
idnamecreatedAtupdatedAtturnkeySubOrgIdPaymentDesiredFromLegResponse
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
PaymentDesiredToLegResponse
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
PaymentDesiredOverlay
Source side.
Destination side.
PaymentEstimatedFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
PaymentEstimatedToLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
PaymentEstimatedOverlay
Source side.
Destination side.
PaymentActualFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
PaymentActualToLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
PaymentActualOverlay
Source side.
Destination side.
RiskStatusReason
risk_status_reason_typerisk_status_reason_categoryrisk_status_reason_messagerisk_status_reason_severityPaymentStepEstimatedFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
PaymentStepEstimatedToLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
PaymentStepEstimatedOverlay
Source side.
Destination side.
PaymentStepActualFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
PaymentStepActualToLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
PaymentStepActualOverlay
Source side.
Destination side.
StepFee
fee_amountFee amount.
fee_currencyFee currency code.
fee_typeFee type (e.g., 'gas', 'provider').
Additional metadata for the fee (JSON object).
PaymentStep
idUnique step identifier
transfer_idID of the parent payment
step_sequenceOrder of this step in the payment flow
step_typeType of step
Planned values for this step.
Settled values once the step reaches a terminal state. All-null until then.
Fees associated with this step.
statusCurrent status of this step
created_atStep creation timestamp
updated_atStep last update timestamp
transaction_hashBlockchain transaction hash
unsigned_transactionUnsigned transaction bytes for client signing. Present only for Turnkey-signed steps in signature_requested status.
provider_keyProvider used for this step
status_reasonsReasons for the current status
Provider-specific data (JSON object).
submitted_atTimestamp when step was submitted
confirmed_atTimestamp when step was confirmed
completed_atTimestamp when step completed
failed_atTimestamp when step failed
Payment
idUnique payment identifier
workspace_idWorkspace ID the payment belongs to
directionPayment direction.
funding_account_idFunding account ID. Payment-only field. Top-level (not part of any overlay).
Caller's stated intent at creation. Frozen except by the two-step PATCH flow which fills account IDs.
Tesser's projection for how the payment will proceed.
What actually settled. Populated once at least one step has status: completed.
risk_statusRisk assessment status.
balance_statusBalance reservation status.
balance_reserved_atTimestamp when balance was reserved.
Payment execution steps.
created_atISO 8601 timestamp of creation.
updated_atISO 8601 timestamp of last update.
expires_atISO 8601 timestamp when the payment expires.
organization_reference_idExternal reference ID for tracking.
Reasons for risk status.
risk_reviewed_byUser ID who reviewed the risk.
risk_reviewed_atTimestamp when risk was reviewed.
LegacyPaymentFee
fee_amountfee_currencyfee_typeLegacyPaymentStep
idtransfer_idstep_sequencestep_typefrom_amountfrom_currencyto_amountto_currencystatuscreated_atupdated_atfrom_account_idfrom_networkto_account_idto_networktransaction_hashprovider_keystatus_reasonssubmitted_atconfirmed_atcompleted_atfailed_atPaymentTableEntity
idEntity unique identifier
classificationEntity classification: 'individual' or 'business'
business_namefirst_namelast_namebusiness_countryindividual_countrywallet_addressFundingAccount
idAccount unique identifier
nameAccount name
bank_namebank_identifier_codebank_swift_codeInternalPaymentFull
idworkspace_iddirectionfrom_amountfrom_currencyto_amountto_currencyrisk_statuscreated_atupdated_atexpires_atstatusComputed payment status for UI
organization_reference_idfunding_account_idfrom_account_idfrom_networkto_account_idto_networkrisk_reviewed_byrisk_reviewed_atbalance_statusbalance_reserved_atPaymentDesiredFromLeg
currencySource currency code.
account_idSource account ID. May be omitted at POST and supplied later via PATCH (two-step PATCH flow).
amountSource amount. Exactly one of desired.from.amount or desired.to.amount must be supplied.
networkSource blockchain network. Required when desired.from.currency is a stablecoin.
PaymentDesiredToLeg
currencyDestination currency code.
account_idDestination account ID. May be omitted at POST and supplied later via PATCH (two-step PATCH flow).
amountDestination amount. Exactly one of desired.from.amount or desired.to.amount must be supplied.
networkDestination blockchain network. Required for crypto-to-crypto payments.
PaymentDesiredOverlayRequest
Source side of the payment.
Destination side of the payment.
CreatePaymentRequest
Caller's stated intent for the payment.
organization_reference_idOptional external reference ID for tracking.
funding_account_idFunding account ID. Optional at POST to support the two-step PATCH creation flow; required together with desired.from.account_id and desired.to.account_id once any of the three is supplied.
UpdatePaymentDesiredFromLeg
account_idSource account ID.
UpdatePaymentDesiredToLeg
account_idDestination account ID.
UpdatePaymentDesiredOverlay
Source side of the payment (account-only update).
Destination side of the payment (account-only update).
UpdatePaymentRequest
funding_account_idFunding account ID for the payment.
Account IDs to attach to the payment.
organization_reference_idOptional external reference ID for tracking.
SignPaymentStepRequest
signatureBase64-encoded JSON envelope { body, stamp } where body is the JSON-encoded Turnkey ACTIVITY_TYPE_SIGN_TRANSACTION_V2 activity and stamp is the X-Stamp header value produced by stamping that body. Wire format: base64(JSON.stringify({ body, stamp })).
InternalPaymentData
idworkspace_iddirectionfrom_amountfrom_currencyto_amountto_currencyrisk_statuscreated_atupdated_atexpires_atorganization_reference_idfunding_account_idfrom_account_idfrom_networkto_account_idto_networkrisk_reviewed_byrisk_reviewed_atbalance_statusbalance_reserved_atCreateWithdrawalRequest
from_currencySource currency code.
to_currencyDestination currency code.
from_amountAmount to send.
from_account_idSource account ID.
to_account_idDestination account ID.
from_networkNetwork for the withdrawal.
to_networkNetwork for the destination.
CurrencyBalanceDto
currencyCurrency symbol
availableAvailable balance from managed accounts (sum across all networks)
pendingReviewTotal payment amount pending review
rejectedTotal payment amount rejected
DepositDesiredFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
DepositDesiredToLeg
account_idAccount ID.
amountAlways null for deposits — see estimated.to.amount for the indicative target.
currencyCurrency code.
networkBlockchain network.
DepositDesiredOverlay
Source side.
Destination side.
DepositEstimatedFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
DepositEstimatedToLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
DepositEstimatedOverlay
Source side.
Destination side.
DepositActualFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
DepositActualToLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
DepositActualOverlay
Source side.
Destination side.
StepEstimatedFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
StepEstimatedToLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
StepEstimatedOverlay
Source side.
Destination side.
StepActualFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
StepActualToLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
StepActualOverlay
Source side.
Destination side.
DepositStep
idUnique identifier for the step.
transfer_idID of the parent payment/transfer.
step_sequenceStep sequence number (0-based).
step_typeStep type: 'transfer', 'swap'.
Planned values for this step.
Settled values once the step reaches a terminal state. All-null until then.
List of fees associated with this step.
statusStep status: 'created', 'signature_requested', 'signed', 'submitted', 'confirmed', 'completed', 'failed'.
created_atISO 8601 timestamp of creation.
updated_atISO 8601 timestamp of last update.
transaction_hashBlockchain transaction hash (for crypto steps).
provider_keyProvider key used for this step (if applicable).
status_reasonsArray of reasons explaining the current status (if any).
submitted_atSubmitted timestamp.
confirmed_atConfirmed timestamp.
completed_atCompleted timestamp.
failed_atFailed timestamp.
Deposit
idUnique identifier for the deposit.
workspace_idWorkspace ID the deposit belongs to.
directionResource direction.
Caller's stated intent at creation. Frozen, never overwritten.
Tesser's projection for how the deposit will proceed.
What actually settled. Populated when the deposit reaches a terminal state.
created_atISO 8601 timestamp of creation.
updated_atISO 8601 timestamp of last update.
organization_reference_idOptional external reference ID.
Optional list of system-generated steps that make up this deposit route.
expires_atISO 8601 timestamp when the deposit expires, or null for auto-created deposits.
DepositBankAccount
idAccount ID.
nameAccount name.
bank_nameBank name.
bank_account_numberBank account number.
bank_code_typeBank code type (e.g., 'routing').
bank_identifier_codeBank identifier code (routing number, sort code, etc.).
bank_swift_codeBank SWIFT code.
BeneficiaryBusinessInfo
business_legal_nameBusiness legal name.
business_street_address1Street address line 1.
business_street_address2Street address line 2.
business_cityCity (null when address isn't structured).
business_stateState (null when address isn't structured).
business_postal_codePostal code (null when address isn't structured).
business_countryCountry code (null when address isn't structured).
WireInstructionsBankAccount
idAccount ID.
nameAccount name.
bank_nameBank name.
bank_account_numberBank account number (VAN).
bank_code_typeBank code type (e.g., ROUTING).
bank_identifier_codeBank identifier code (routing number).
Beneficiary business info (legal entity receiving the wire).
bank_swift_codeBank SWIFT code (null for non-SWIFT rails like SPEI/SEPA).
tracking_referenceWire transfer tracking reference.
DepositInstructionsData
Source account information (for reference).
Wire instructions for completing the deposit.
amountDeposit amount.
currencyDeposit currency.
DesiredFromLeg
account_idSource bank account ID.
amountSource amount.
currencySource currency code.
DesiredToLeg
account_idDestination account ID.
currencyDestination currency code.
networkDestination blockchain network.
DesiredOverlayRequest
Source side of the deposit.
Destination side of the deposit.
CreateDepositRequest
Caller's stated intent for the deposit.
organization_reference_idOptional client-supplied identifier.
RebalanceDesiredFromLegResponse
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
RebalanceDesiredToLegResponse
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
RebalanceDesiredOverlay
Source side.
Destination side.
RebalanceEstimatedFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
RebalanceEstimatedToLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
RebalanceEstimatedOverlay
Source side.
Destination side.
RebalanceActualFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
RebalanceActualToLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
RebalanceActualOverlay
Source side.
Destination side.
RebalanceStepEstimatedFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
RebalanceStepEstimatedToLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
RebalanceStepEstimatedOverlay
Source side.
Destination side.
RebalanceStepActualFromLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
RebalanceStepActualToLeg
account_idAccount ID.
amountAmount.
currencyCurrency code.
networkBlockchain network.
RebalanceStepActualOverlay
Source side.
Destination side.
RebalanceStep
idUnique step identifier
transfer_idID of the parent rebalance
step_sequenceOrder of this step in the rebalance flow
step_typeType of step
Planned values for this step.
Settled values once the step reaches a terminal state. All-null until then.
Fees associated with this step
statusCurrent status of this step
created_atStep creation timestamp
updated_atStep last update timestamp
transaction_hashBlockchain transaction hash
unsigned_transactionUnsigned transaction bytes for client signing. Present only for Turnkey-signed steps in signature_requested status.
provider_keyProvider used for this step
status_reasonsReasons for the current status
Provider-specific data (JSON object).
submitted_atTimestamp when step was submitted
confirmed_atTimestamp when step was confirmed
completed_atTimestamp when step completed
failed_atTimestamp when step failed
Rebalance
idUnique rebalance identifier
workspace_idWorkspace ID the rebalance belongs to
directionResource direction.
Caller's stated intent at creation. Frozen, never overwritten.
Tesser's projection for how the rebalance will proceed.
What actually settled. Populated when the rebalance reaches a terminal state.
balance_statusBalance reservation status.
balance_reserved_atTimestamp when balance was reserved.
Rebalance execution steps.
created_atISO 8601 timestamp of creation.
updated_atISO 8601 timestamp of last update.
expires_atISO 8601 timestamp when the rebalance expires.
organization_reference_idExternal reference ID for tracking
RebalanceDesiredFromLeg
account_idSource account ID.
amountSource amount.
currencySource currency code.
networkSource blockchain network.
RebalanceDesiredToLeg
account_idDestination account ID.
currencyDestination currency code.
networkDestination blockchain network.
RebalanceDesiredOverlayRequest
Source side of the rebalance.
Destination side of the rebalance.