3.10.217 • Published 9 months ago

ultra_cart_rest_api_v2 v3.10.217

Weekly downloads
510
License
Unlicense
Repository
-
Last release
9 months ago

ultra_cart_rest_api_v2

UltraCartRestApiV2 - JavaScript client for ultra_cart_rest_api_v2 UltraCart REST API Version 2 This SDK is automatically generated by the Swagger Codegen project:

  • API version: 2.0.0
  • Package version: 3.10.217
  • Build package: io.swagger.codegen.languages.JavascriptClientCodegen For more information, please visit http://www.ultracart.com

Installation

For Node.js

npm

To install this SDK in your project, execute the following command:

npm install ultra_cart_rest_api_v2 --save
Local development

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

npm install

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

npm link

Finally, switch to the directory you want to use your ultra_cart_rest_api_v2 from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

You should now be able to require('ultra_cart_rest_api_v2') in javascript files from the directory you ran the last command above from.

git

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

    npm install UltraCart/rest_api_v2_sdk_javascript --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file, that's to say your javascript file where you actually use this library):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

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

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

Getting Started

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

var UltraCartRestApiV2 = require('ultra_cart_rest_api_v2');



// Create a Simple Key: https://ultracart.atlassian.net/wiki/spaces/ucdoc/pages/38688545/API+Simple+Key
var simpleKey = "109ee846ee69f50177018ab12f008a00748a25aa28dbdc0177018ab12f008a00";
UltraCartRestApiV2.ApiClient.usingApiKey(simpleKey, false)

var api = new UltraCartRestApiV2.AffiliateApi()

var click_query = new UltraCartRestApiV2.AffiliateClickQuery(); // {AffiliateClickQuery} Click query

var opts = { 
  '_limit': 10000, // {Number} The maximum number of records to return on this one API call. (Maximum 10000)
  '_offset': 0, // {Number} Pagination of the record set.  Offset is a zero based index.
  '_expand': "_expand_example" // {String} The object expansion to perform on the result.  Only option is link.
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getClicksByQuery(click_query, opts, callback);

Documentation for API Endpoints

All URIs are relative to https://secure.ultracart.com/rest/v2

ClassMethodHTTP requestDescription
UltraCartRestApiV2.AffiliateApigetClicksByQueryPOST /affiliate/clicks/queryRetrieve clicks
UltraCartRestApiV2.AffiliateApigetLedgersByQueryPOST /affiliate/ledgers/queryRetrieve ledger entries
UltraCartRestApiV2.AutoOrderApiconsolidateAutoOrdersPUT /auto_order/auto_orders/{auto_order_oid}/consolidateConsolidates multiple auto orders
UltraCartRestApiV2.AutoOrderApiestablishAutoOrderByReferenceOrderIdPOST /auto_order/auto_orders/reference_order_id/{reference_order_id}Establish an auto order by referencing a regular order id
UltraCartRestApiV2.AutoOrderApigetAutoOrderGET /auto_order/auto_orders/{auto_order_oid}Retrieve an auto order by oid
UltraCartRestApiV2.AutoOrderApigetAutoOrderByCodeGET /auto_order/auto_orders/code/{auto_order_code}Retrieve an auto order by code
UltraCartRestApiV2.AutoOrderApigetAutoOrderByReferenceOrderIdGET /auto_order/auto_orders/reference_order_id/{reference_order_id}Retrieve an auto order by order id
UltraCartRestApiV2.AutoOrderApigetAutoOrdersGET /auto_order/auto_ordersRetrieve auto orders
UltraCartRestApiV2.AutoOrderApigetAutoOrdersBatchPOST /auto_order/auto_orders/batchRetrieve auto order batch
UltraCartRestApiV2.AutoOrderApigetAutoOrdersByQueryPOST /auto_order/auto_orders/queryRetrieve auto orders by query
UltraCartRestApiV2.AutoOrderApiupdateAutoOrderPUT /auto_order/auto_orders/{auto_order_oid}Update an auto order
UltraCartRestApiV2.AutoOrderApiupdateAutoOrdersBatchPUT /auto_order/auto_orders/batchUpdate multiple auto orders
UltraCartRestApiV2.ChannelPartnerApicancelOrderByChannelPartnerOrderIdDELETE /channel_partner/cancel/by_channel_partner_order_id/{order_id}Cancel channel partner order by channel partner order id
UltraCartRestApiV2.ChannelPartnerApicancelOrderByUltraCartOrderIdDELETE /channel_partner/cancel/by_ultracart_order_id/{order_id}Cancel channel partner order by UltraCart order id
UltraCartRestApiV2.ChannelPartnerApideleteChannelPartnerShipToPreferenceDELETE /channel_partner/channel_partners/{channel_partner_oid}/ship_to_preferences/{channel_partner_ship_to_preference_oid}Delete a ship to preference record for the channel partner.
UltraCartRestApiV2.ChannelPartnerApiestimateShippingForChannelPartnerOrderPOST /channel_partner/estimate_shippingEstimate shipping for channel partner order
UltraCartRestApiV2.ChannelPartnerApiestimateTaxForChannelPartnerOrderPOST /channel_partner/estimate_taxEstimate tax for channel partner order
UltraCartRestApiV2.ChannelPartnerApigetChannelPartnerShipToPreferenceGET /channel_partner/channel_partners/{channel_partner_oid}/ship_to_preferences/{channel_partner_ship_to_preference_oid}Retrieve the ship to preference associated with the channel partner and the specific id.
UltraCartRestApiV2.ChannelPartnerApigetChannelPartnerShipToPreferencesGET /channel_partner/channel_partners/{channel_partner_oid}/ship_to_preferencesRetrieve the ship to preferences associated with the channel partner.
UltraCartRestApiV2.ChannelPartnerApigetChannelPartnersGET /channel_partner/channel_partnersRetrieve the channel partners configured on the account.
UltraCartRestApiV2.ChannelPartnerApiimportChannelPartnerOrderPOST /channel_partner/importInsert channel partner order
UltraCartRestApiV2.ChannelPartnerApiinsertChannelPartnerShipToPreferencePOST /channel_partner/channel_partners/{channel_partner_oid}/ship_to_preferencesInsert a ship to preference record for the channel partner.
UltraCartRestApiV2.ChannelPartnerApiupdateChannelPartnerShipToPreferencePUT /channel_partner/channel_partners/{channel_partner_oid}/ship_to_preferences/{channel_partner_ship_to_preference_oid}Update a ship to preference record for the channel partner.
UltraCartRestApiV2.ChargebackApideleteChargebackDELETE /chargeback/chargebacks/{chargeback_dispute_oid}Delete a chargeback
UltraCartRestApiV2.ChargebackApigetChargebackDisputeGET /chargeback/chargebacks/{chargeback_dispute_oid}Retrieve a chargeback
UltraCartRestApiV2.ChargebackApigetChargebackDisputesGET /chargeback/chargebacksRetrieve chargebacks
UltraCartRestApiV2.ChargebackApiinsertChargebackPOST /chargeback/chargebacksInsert a chargeback
UltraCartRestApiV2.ChargebackApiupdateChargebackPUT /chargeback/chargebacks/{chargeback_dispute_oid}Update a chargeback
UltraCartRestApiV2.CheckoutApicityStatePOST /checkout/city_stateCity/State for Zip
UltraCartRestApiV2.CheckoutApifinalizeOrderPOST /checkout/cart/finalizeOrderFinalize Order
UltraCartRestApiV2.CheckoutApigetAffirmCheckoutGET /checkout/cart/{cart_id}/affirmCheckoutGet affirm checkout (by cart id)
UltraCartRestApiV2.CheckoutApigetAllowedCountriesPOST /checkout/allowedCountriesAllowed countries
UltraCartRestApiV2.CheckoutApigetCartGET /checkout/cartGet cart
UltraCartRestApiV2.CheckoutApigetCartByCartIdGET /checkout/cart/{cart_id}Get cart (by cart id)
UltraCartRestApiV2.CheckoutApigetCartByReturnCodeGET /checkout/return/{return_code}Get cart (by return code)
UltraCartRestApiV2.CheckoutApigetCartByReturnTokenGET /checkout/return_tokenGet cart (by return token)
UltraCartRestApiV2.CheckoutApigetStateProvincesForCountryPOST /checkout/stateProvincesForCountry/{country_code}Get state/province list for a country code
UltraCartRestApiV2.CheckoutApihandoffCartPOST /checkout/cart/handoffHandoff cart
UltraCartRestApiV2.CheckoutApiloginPOST /checkout/cart/profile/loginProfile login
UltraCartRestApiV2.CheckoutApilogoutPOST /checkout/cart/profile/logoutProfile logout
UltraCartRestApiV2.CheckoutApiregisterPOST /checkout/cart/profile/registerProfile registration
UltraCartRestApiV2.CheckoutApiregisterAffiliateClickPOST /checkout/affiliateClick/registerRegister affiliate click
UltraCartRestApiV2.CheckoutApirelatedItemsForCartPOST /checkout/related_itemsRelated items
UltraCartRestApiV2.CheckoutApirelatedItemsForItemPOST /checkout/relatedItems/{item_id}Related items (specific item)
UltraCartRestApiV2.CheckoutApisetupBrowserKeyPUT /checkout/browser_keySetup Browser Application
UltraCartRestApiV2.CheckoutApiupdateCartPUT /checkout/cartUpdate cart
UltraCartRestApiV2.CheckoutApivalidateCartPOST /checkout/cart/validateValidate
UltraCartRestApiV2.ConversationApideleteConversationCannedMessageDELETE /conversation/canned_messages/{conversation_canned_message_oid}Delete a conversation canned message
UltraCartRestApiV2.ConversationApideleteDepartmentDELETE /conversation/departments/{conversation_department_oid}Delete a conversation department
UltraCartRestApiV2.ConversationApideleteEngagementDELETE /conversation/engagements/{conversation_engagement_oid}Delete a conversation engagement
UltraCartRestApiV2.ConversationApideletePbxAgentVoicemailDELETE /conversation/pbx/agent/voicemails/{recording_sid}Delete Agent Voicemail
UltraCartRestApiV2.ConversationApideletePbxAudioDELETE /conversation/pbx/audio/{conversationPbxAudioUuid}Delete pbx audio
UltraCartRestApiV2.ConversationApideletePbxMenuDELETE /conversation/pbx/menu/{conversationPbxMenuUuid}Delete pbx menu
UltraCartRestApiV2.ConversationApideletePbxQueueDELETE /conversation/pbx/queue/{conversationPbxQueueUuid}Delete pbx queue
UltraCartRestApiV2.ConversationApideletePbxQueueVoicemailDELETE /conversation/pbx/queues/{queue_uuid}/voicemails/{recording_sid}Delete Queue Voicemail
UltraCartRestApiV2.ConversationApideletePbxTimeBasedDELETE /conversation/pbx/time_based/{conversationPbxTimeBasedUuid}Delete pbx timeBased
UltraCartRestApiV2.ConversationApideletePbxTimeRangeDELETE /conversation/pbx/time_range/{conversationPbxTimeRangeUuid}Delete pbx timeRange
UltraCartRestApiV2.ConversationApideletePbxVoicemailMailboxDELETE /conversation/pbx/voicemail_mailbox/{conversationPbxVoicemailMailboxUuid}Delete pbx voicemailMailbox
UltraCartRestApiV2.ConversationApigetAgentKeepAliveGET /conversation/agent/keepaliveAgent keep alive
UltraCartRestApiV2.ConversationApigetAgentProfileGET /conversation/agent/profileGet agent profile
UltraCartRestApiV2.ConversationApigetAgentWebsocketAuthorizationPUT /conversation/agent/authGet agent websocket authorization
UltraCartRestApiV2.ConversationApigetConversationGET /conversation/conversations/{conversation_uuid}Retrieve a conversation
UltraCartRestApiV2.ConversationApigetConversationCannedMessagesGET /conversation/canned_messagesRetrieve a list of canned messages ordered by short_code
UltraCartRestApiV2.ConversationApigetConversationContextPUT /conversation/conversations/{conversation_uuid}/contextGet a webchat conversation context
UltraCartRestApiV2.ConversationApigetConversationDepartmentMemberListGET /conversation/department_membersRetrieve a list of possible department members
UltraCartRestApiV2.ConversationApigetConversationDepartmentsGET /conversation/departmentsRetrieve a list of departments ordered by name
UltraCartRestApiV2.ConversationApigetConversationEngagementGET /conversation/engagements/{conversation_engagement_oid}Retrieve an engagement
UltraCartRestApiV2.ConversationApigetConversationEngagementsGET /conversation/engagementsRetrieve a list of engagements ordered by name
UltraCartRestApiV2.ConversationApigetConversationMessagesGET /conversation/conversations/{conversation_uuid}/messages/{since}Retrieve conversation messages
UltraCartRestApiV2.ConversationApigetConversationMultimediaUploadUrlGET /conversation/upload_url/{extension}Get a presigned conversation multimedia upload URL
UltraCartRestApiV2.ConversationApigetConversationPbxAudioUploadUrlGET /conversation/pbx/audio/upload_url/{extension}Get a pre-signed conversation multimedia upload URL
UltraCartRestApiV2.ConversationApigetConversationPbxCustomerSnapshotPOST /conversation/pbx/customer_snapshotGet orders and customer information for a phone number
UltraCartRestApiV2.ConversationApigetConversationPermissionsGET /conversation/permissionsRetrieve conversation permissions
UltraCartRestApiV2.ConversationApigetConversationWebchatQueueStatusesGET /conversation/conversations/queues/statusesRetrieve a conversation webchat queue statuses
UltraCartRestApiV2.ConversationApigetConversationsGET /conversation/conversationsRetrieve a list of conversation summaries newest to oldest
UltraCartRestApiV2.ConversationApigetConversationsAutocompletePOST /conversation/conversations/autocompleteRetrieve a list of matching terms for a search field
UltraCartRestApiV2.ConversationApigetConversationsSearchPOST /conversation/conversations/searchSearch conversations
UltraCartRestApiV2.ConversationApigetLocationsForEngagementPOST /conversation/locationsGet location data for engagement configuration
UltraCartRestApiV2.ConversationApigetPbxAgentGET /conversation/pbx/agent/{conversationPbxAgentUuid}Get pbx agent
UltraCartRestApiV2.ConversationApigetPbxAgentVoicemailGET /conversation/pbx/agent/voicemails/{recording_sid}Get Agent Voicemail
UltraCartRestApiV2.ConversationApigetPbxAgentVoicemailsGET /conversation/pbx/agent/voicemailsGet Agent Voicemails
UltraCartRestApiV2.ConversationApigetPbxAgentsGET /conversation/pbx/agentGet pbx agents
UltraCartRestApiV2.ConversationApigetPbxAudioGET /conversation/pbx/audio/{conversationPbxAudioUuid}Get pbx audio
UltraCartRestApiV2.ConversationApigetPbxAudioUsageGET /conversation/pbx/audio/{conversationPbxAudioUuid}/usageGet pbx audio usage
UltraCartRestApiV2.ConversationApigetPbxAudiosGET /conversation/pbx/audioGet pbx audios
UltraCartRestApiV2.ConversationApigetPbxMenuGET /conversation/pbx/menu/{conversationPbxMenuUuid}Get pbx menu
UltraCartRestApiV2.ConversationApigetPbxMenusGET /conversation/pbx/menuGet pbx menus
UltraCartRestApiV2.ConversationApigetPbxPhoneNumberGET /conversation/pbx/phone_number/{conversationPbxPhoneNumberUuid}Get pbx phoneNumber
UltraCartRestApiV2.ConversationApigetPbxPhoneNumbersGET /conversation/pbx/phone_numberGet pbx phoneNumbers
UltraCartRestApiV2.ConversationApigetPbxQueueGET /conversation/pbx/queue/{conversationPbxQueueUuid}Get pbx queue
UltraCartRestApiV2.ConversationApigetPbxQueueVoicemailGET /conversation/pbx/queues/{queue_uuid}/voicemails/{recording_sid}Get Queue Voicemail
UltraCartRestApiV2.ConversationApigetPbxQueueVoicemailsGET /conversation/pbx/queues/{queue_uuid}/voicemailsGet Queue Voicemails
UltraCartRestApiV2.ConversationApigetPbxQueuesGET /conversation/pbx/queueGet pbx queues
UltraCartRestApiV2.ConversationApigetPbxTimeBasedGET /conversation/pbx/time_based/{conversationPbxTimeBasedUuid}Get pbx timeBased
UltraCartRestApiV2.ConversationApigetPbxTimeBasedsGET /conversation/pbx/time_basedGet pbx timeBaseds
UltraCartRestApiV2.ConversationApigetPbxTimeRangeGET /conversation/pbx/time_range/{conversationPbxTimeRangeUuid}Get pbx timeRange
UltraCartRestApiV2.ConversationApigetPbxTimeRangesGET /conversation/pbx/time_rangeGet pbx timeRanges
UltraCartRestApiV2.ConversationApigetPbxVoicemailMailboxGET /conversation/pbx/voicemail_mailbox/{conversationPbxVoicemailMailboxUuid}Get pbx voicemailMailbox
UltraCartRestApiV2.ConversationApigetPbxVoicemailMailboxesGET /conversation/pbx/voicemail_mailboxGet pbx voicemailMailboxes
UltraCartRestApiV2.ConversationApiinsertConversationCannedMessagePOST /conversation/canned_messagesInsert a canned message
UltraCartRestApiV2.ConversationApiinsertConversationDepartmentPOST /conversation/departmentsInsert a department
UltraCartRestApiV2.ConversationApiinsertConversationEngagementPOST /conversation/engagementsInsert a engagement
UltraCartRestApiV2.ConversationApiinsertPbxAudioPOST /conversation/pbx/audioInsert pbx audio
UltraCartRestApiV2.ConversationApiinsertPbxMenuPOST /conversation/pbx/menuInsert pbx menu
UltraCartRestApiV2.ConversationApiinsertPbxQueuePOST /conversation/pbx/queueInsert pbx queue
UltraCartRestApiV2.ConversationApiinsertPbxTimeBasedPOST /conversation/pbx/time_basedInsert pbx timeBased
UltraCartRestApiV2.ConversationApiinsertPbxTimeRangePOST /conversation/pbx/time_rangeInsert pbx timeRange
UltraCartRestApiV2.ConversationApiinsertPbxVoicemailMailboxPOST /conversation/pbx/voicemail_mailboxInsert pbx voicemailMailbox
UltraCartRestApiV2.ConversationApijoinConversationPUT /conversation/conversations/{conversation_uuid}/joinJoin a conversation
UltraCartRestApiV2.ConversationApileaveConversationDELETE /conversation/conversations/{conversation_uuid}/leaveLeave a conversation
UltraCartRestApiV2.ConversationApilistenedPbxAgentVoicemailGET /conversation/pbx/agent/voicemails/{recording_sid}/listenedListened Agent Voicemail
UltraCartRestApiV2.ConversationApilistenedPbxQueueVoicemailGET /conversation/pbx/queues/{queue_uuid}/voicemails/{recording_sid}/listenedListened Queue Voicemail
UltraCartRestApiV2.ConversationApimarkReadConversationPUT /conversation/conversations/{conversation_uuid}/markreadMark a conversation as read
UltraCartRestApiV2.ConversationApiresetConversationPbxQueueStatisticsPOST /conversation/pbx/queues/{queue_uuid}/reset_statisticsreset statistics within the queue
UltraCartRestApiV2.ConversationApisearchConversationCannedMessagesPOST /conversation/canned_messages/searchSearch for canned messages by short_code
UltraCartRestApiV2.ConversationApismsUnsubscribeConversationPUT /conversation/conversations/{conversation_uuid}/sms_unsubscribeUnsubscribe any SMS participants in this conversation
UltraCartRestApiV2.ConversationApistartConversationPUT /conversation/conversationsStart a conversation
UltraCartRestApiV2.ConversationApiupdateAgentProfilePUT /conversation/agent/profileUpdate agent profile
UltraCartRestApiV2.ConversationApiupdateConversationCannedMessagePUT /conversation/canned_messages/{conversation_canned_message_oid}Update a canned message
UltraCartRestApiV2.ConversationApiupdateConversationDepartmentPUT /conversation/departments/{conversation_department_oid}Update a department
UltraCartRestApiV2.ConversationApiupdateConversationEngagementPUT /conversation/engagements/{conversation_engagement_oid}Update a engagement
UltraCartRestApiV2.ConversationApiupdateConversationWebchatQueueStatusPUT /conversation/conversations/queues/{queue_name}/statusUpdate status within the queue
UltraCartRestApiV2.ConversationApiupdatePbxAgentPUT /conversation/pbx/agent/{conversationPbxAgentUuid}Update pbx agent
UltraCartRestApiV2.ConversationApiupdatePbxAudioPUT /conversation/pbx/audio/{conversationPbxAudioUuid}Update pbx audio
UltraCartRestApiV2.ConversationApiupdatePbxMenuPUT /conversation/pbx/menu/{conversationPbxMenuUuid}Update pbx menu
UltraCartRestApiV2.ConversationApiupdatePbxPhoneNumberPUT /conversation/pbx/phone_number/{conversationPbxPhoneNumberUuid}Update pbx phoneNumber
UltraCartRestApiV2.ConversationApiupdatePbxQueuePUT /conversation/pbx/queue/{conversationPbxQueueUuid}Update pbx queue
UltraCartRestApiV2.ConversationApiupdatePbxTimeBasedPUT /conversation/pbx/time_based/{conversationPbxTimeBasedUuid}Update pbx timeBased
UltraCartRestApiV2.ConversationApiupdatePbxTimeRangePUT /conversation/pbx/time_range/{conversationPbxTimeRangeUuid}Update pbx timeRange
UltraCartRestApiV2.ConversationApiupdatePbxVoicemailMailboxPUT /conversation/pbx/voicemail_mailbox/{conversationPbxVoicemailMailboxUuid}Update pbx voicemailMailbox
UltraCartRestApiV2.CouponApideleteCouponDELETE /coupon/coupons/{coupon_oid}Delete a coupon
UltraCartRestApiV2.CouponApideleteCouponsByCodeDELETE /coupon/coupons/by_codeDeletes multiple coupons
UltraCartRestApiV2.CouponApideleteCouponsByOidDELETE /coupon/coupons/by_oidDeletes multiple coupons
UltraCartRestApiV2.CouponApidoesCouponCodeExistGET /coupon/coupons/merchant_code/{merchant_code}/existsDetermines if a coupon merchant code already exists
UltraCartRestApiV2.CouponApigenerateCouponCodesPOST /coupon/coupons/{coupon_oid}/generate_codesGenerates one time codes for a coupon
UltraCartRestApiV2.CouponApigenerateOneTimeCodesByMerchantCodePOST /coupon/coupons/merchant_code/{merchant_code}/generate_codesGenerates one time codes by merchant code
UltraCartRestApiV2.CouponApigetAutoApplyGET /coupon/auto_applyRetrieve auto apply rules and conditions
UltraCartRestApiV2.CouponApigetCouponGET /coupon/coupons/{coupon_oid}Retrieve a coupon
UltraCartRestApiV2.CouponApigetCouponByMerchantCodeGET /coupon/coupons/merchant_code/{merchant_code}Retrieve a coupon by merchant code
UltraCartRestApiV2.CouponApigetCouponsGET /coupon/couponsRetrieve coupons
UltraCartRestApiV2.CouponApigetCouponsByQueryPOST /coupon/coupons/queryRetrieve coupons by query
UltraCartRestApiV2.CouponApigetEditorValuesGET /coupon/editor_valuesRetrieve values needed for a coupon editor
UltraCartRestApiV2.CouponApiinsertCouponPOST /coupon/couponsInsert a coupon
UltraCartRestApiV2.CouponApiinsertCouponsPOST /coupon/coupons/batchInsert multiple coupons
UltraCartRestApiV2.CouponApisearchItemsGET /coupon/searchItemsSearches for items to display within a coupon editor and assign to coupons
UltraCartRestApiV2.CouponApiupdateAutoApplyPOST /coupon/auto_applyUpdate auto apply rules and conditions
UltraCartRestApiV2.CouponApiupdateCouponPUT /coupon/coupons/{coupon_oid}Update a coupon
UltraCartRestApiV2.CouponApiupdateCouponsPUT /coupon/coupons/batchUpdate multiple coupons
UltraCartRestApiV2.CouponApiuploadCouponCodesPOST /coupon/coupons/{coupon_oid}/upload_codesUpload one-time codes for a coupon
UltraCartRestApiV2.CustomerApiaddCustomerStoreCreditPOST /customer/customers/{customer_profile_oid}/store_creditAdds store credit to a customer
UltraCartRestApiV2.CustomerApiadjustInternalCertificatePOST /customer/customers/{customer_profile_oid}/adjust_cashback_balanceUpdates the cashback balance for a customer by updating the internal gift certificate used, creating the gift certificate if needed.
UltraCartRestApiV2.CustomerApideleteCustomerDELETE /customer/customers/{customer_profile_oid}Delete a customer
UltraCartRestApiV2.CustomerApideleteWishListItemDELETE /customer/customers/{customer_profile_oid}/wishlist/{customer_wishlist_item_oid}Delete a customer wishlist item
UltraCartRestApiV2.CustomerApigetCustomerGET /customer/customers/{customer_profile_oid}Retrieve a customer
UltraCartRestApiV2.CustomerApigetCustomerByEmailGET /customer/customers/by_email/{email}Retrieve a customer by Email
UltraCartRestApiV2.CustomerApigetCustomerEditorValuesGET /customer/editor_valuesRetrieve values needed for a customer profile editor
UltraCartRestApiV2.CustomerApigetCustomerEmailListsGET /customer/email_listsRetrieve all email lists across all storefronts
UltraCartRestApiV2.CustomerApigetCustomerStoreCreditGET /customer/customers/{customer_profile_oid}/store_creditRetrieve the customer store credit accumulated through loyalty programs
UltraCartRestApiV2.CustomerApigetCustomerWishListGET /customer/customers/{customer_profile_oid}/wishlistRetrieve wishlist items for customer
UltraCartRestApiV2.CustomerApigetCustomerWishListItemGET /customer/customers/{customer_profile_oid}/wishlist/{customer_wishlist_item_oid}Retrieve wishlist item for customer
UltraCartRestApiV2.CustomerApigetCustomersGET /customer/customersRetrieve customers
UltraCartRestApiV2.CustomerApigetCustomersByQueryPOST /customer/customers/queryRetrieve customers by query
UltraCartRestApiV2.CustomerApigetCustomersForDataTablesPOST /customer/customers/dataTablesRetrieve customers for DataTables plugin
UltraCartRestApiV2.CustomerApigetEmailVerificationTokenPOST /customer/customers/email_verify/get_tokenCreate a token that can be used to verify a customer email address
UltraCartRestApiV2.CustomerApigetMagicLinkPUT /customer/customers/{customer_profile_oid}/magic_link/{storefront_host_name}getMagicLink
UltraCartRestApiV2.CustomerApiinsertCustomerPOST /customer/customersInsert a customer
UltraCartRestApiV2.CustomerApiinsertWishListItemPOST /customer/customers/{customer_profile_oid}/wishlistInsert a customer wishlist item
UltraCartRestApiV2.CustomerApimergeCustomerPUT /customer/customers/{customer_profile_oid}/mergeMerge customer into this customer
UltraCartRestApiV2.CustomerApisearchCustomerProfileValuesPOST /customer/searchSearches for all matching values (using POST)
UltraCartRestApiV2.CustomerApiupdateCustomerPUT /customer/customers/{customer_profile_oid}Update a customer
UltraCartRestApiV2.CustomerApiupdateCustomerEmailListsPOST /customer/customers/{customer_profile_oid}/email_listsUpdate email list subscriptions for a customer
UltraCartRestApiV2.CustomerApiupdateWishListItemPUT /customer/customers/{customer_profile_oid}/wishlist/{customer_wishlist_item_oid}Update a customer wishlist item
UltraCartRestApiV2.CustomerApivalidateEmailVerificationTokenPOST /customer/customers/email_verify/validate_tokenValidate a token that can be used to verify a customer email address
UltraCartRestApiV2.DatawarehouseApideleteReportDELETE /datawarehouse/reports/{report_oid}Delete a report
UltraCartRestApiV2.DatawarehouseApidryRunReportQueriesPUT /datawarehouse/reports/dryrunDry run the report queries
UltraCartRestApiV2.DatawarehouseApiexecuteReportQueriesPUT /datawarehouse/reports/executeExecute the report queries
UltraCartRestApiV2.DatawarehouseApigetReportGET /datawarehouse/reports/{report_oid}Get a report
UltraCartRestApiV2.DatawarehouseApigetReportDataSetGET /datawarehouse/reports/dataset/{dataset_uuid}Get a report data set
UltraCartRestApiV2.DatawarehouseApigetReportDataSetPageGET /datawarehouse/reports/dataset/{dataset_uuid}/pages/{page_number}Get a report data set page
UltraCartRestApiV2.DatawarehouseApigetReportWebsocketAuthorizationPUT /datawarehouse/reports/authGet report websocket authorization
UltraCartRestApiV2.DatawarehouseApigetReportsGET /datawarehouse/reportsGet list of reports available
UltraCartRestApiV2.DatawarehouseApiinsertReportPOST /datawarehouse/reportsCreate a report
UltraCartRestApiV2.DatawarehouseApiupdateReportPUT /datawarehouse/reports/{report_oid}Update a report
UltraCartRestApiV2.FulfillmentApiacknowledgeOrdersPUT /fulfillment/distribution_centers/{distribution_center_code}/acknowledgementsAcknowledge receipt of orders.
UltraCartRestApiV2.FulfillmentApigeneratePackingSlipGET /fulfillment/distribution_centers/{distribution_center_code}/orders/{order_id}Generate a packing slip for this order for the given distribution center.
UltraCartRestApiV2.FulfillmentApigetDistributionCenterOrdersGET /fulfillment/distribution_centers/{distribution_center_code}/ordersRetrieve orders queued up for this distribution center.
UltraCartRestApiV2.FulfillmentApigetDistributionCentersGET /fulfillment/distribution_centersRetrieve distribution centers
UltraCartRestApiV2.FulfillmentApishipOrdersPOST /fulfillment/distribution_centers/{distribution_center_code}/shipmentsMark orders as shipped
UltraCartRestApiV2.FulfillmentApiupdateInventoryPOST /fulfillment/distribution_centers/{distribution_center_code}/inventoryUpdate inventory
UltraCartRestApiV2.GiftCertificateApiaddGiftCertificateLedgerEntryPOST /gift_certificate/gift_certificates/{gift_certificate_oid}/ledger_entryAdd a gift certificate ledger entry
UltraCartRestApiV2.GiftCertificateApicreateGiftCertificatePOST /gift_certificate/gift_certificatesCreate a gift certificate
UltraCartRestApiV2.GiftCertificateApideleteGiftCertificateDELETE /gift_certificate/gift_certificates/{gift_certificate_oid}Delete a gift certificate
UltraCartRestApiV2.GiftCertificateApigetGiftCertificateByCodePOST /gift_certificate/gift_certificates/by_code/{code}Retrieve gift certificate by code
UltraCartRestApiV2.GiftCertificateApigetGiftCertificateByOidPOST /gift_certificate/gift_certificates/{gift_certificate_oid}Retrieve gift certificate by oid
UltraCartRestApiV2.GiftCertificateApigetGiftCertificatesByEmailPOST /gift_certificate/gift_certificates/by_email/{email}Retrieve gift certificate by email
UltraCartRestApiV2.GiftCertificateApigetGiftCertificatesByQueryPOST /gift_certificate/gift_certificates/queryRetrieve gift certificates by query
UltraCartRestApiV2.GiftCertificateApiupdateGiftCertificatePUT /gift_certificate/gift_certificates/{gift_certificate_oid}Update a gift certificate
UltraCartRestApiV2.IntegrationLogApigetIntegrationLogGET /integration_log/query/{pk}/{sk}Retrieve an integration log
UltraCartRestApiV2.IntegrationLogApigetIntegrationLogFileGET /integration_log/query/{pk}/{sk}/{uuid}Retrieve an integration log file
UltraCartRestApiV2.IntegrationLogApigetIntegrationLogFilePdfGET /integration_log/query/{pk}/{sk}/{uuid}/pdfRetrieve an integration log file converted to PDF
UltraCartRestApiV2.IntegrationLogApigetIntegrationLogSummariesQueryPOST /integration_log/summary/queryRetrieve integration log summaries
UltraCartRestApiV2.IntegrationLogApigetIntegrationLogsQueryPOST /integration_log/queryRetrieve integration logs
UltraCartRestApiV2.ItemApideleteDigitalItemDELETE /item/digital_library/{digital_item_oid}Delete a digital item, which is a file within the digital library, not an actual merchant item
UltraCartRestApiV2.ItemApideleteItemDELETE /item/items/{merchant_item_oid}Delete an item
UltraCartRestApiV2.ItemApideleteReviewDELETE /item/items/{merchant_item_oid}/reviews/{review_oid}Delete a review
UltraCartRestApiV2.ItemApigetDigitalItemGET /item/digital_library/{digital_item_oid}Retrieve a digital item from the digital library, which are digital files that may be attached to normal items
UltraCartRestApiV2.ItemApigetDigitalItemsGET /item/digital_libraryRetrieve digital items from the digital library which are digital files that may be attached to normal items
UltraCartRestApiV2.ItemApigetDigitalItemsByExternalIdGET /item/digital_library/by_external/{external_id}Retrieves digital items from the digital library (which are digital files that may be attached to normal items) that having a matching external id
UltraCartRestApiV2.ItemApigetItemGET /item/items/{merchant_item_oid}Retrieve an item
UltraCartRestApiV2.ItemApigetItemByMerchantItemIdGET /item/items/merchant_item_id/{merchant_item_id}Retrieve an item by item id
UltraCartRestApiV2.ItemApigetItemsGET /item/itemsRetrieve items
UltraCartRestApiV2.ItemApigetPricingTiersGET /item/pricing_tiersRetrieve pricing tiers
UltraCartRestApiV2.ItemApigetReviewGET /item/items/{merchant_item_oid}/reviews/{review_oid}Get a review
UltraCartRestApiV2.ItemApigetReviewsGET /item/items/{merchant_item_oid}/reviewsGet reviews for an item
UltraCartRestApiV2.ItemApigetUnassociatedDigitalItemsGET /item/digital_library/unassociatedRetrieve digital items from the digital library (which are digital files that may be attached to normal items) not yet associated with actual items
UltraCartRestApiV2.ItemApiinsertDigitalItemPOST /item/digital_libraryCreate a file within the digital library
UltraCartRestApiV2.ItemApiinsertItemPOST /item/itemsCreate an item
UltraCartRestApiV2.ItemApiinsertReviewPOST /item/items/{merchant_item_oid}/reviewsInsert a review
UltraCartRestApiV2.ItemApiinsertUpdateItemContentAttributePOST /item/items/{merchant_item_oid}/content/attributesUpsert an item content attribute
UltraCartRestApiV2.ItemApirestItemInventorySnapshotResponseGET /item/items/inventory_snapshotRetrieve a list of item inventories. This method may be called once every 15 minutes. More than that will result in a 429 response.
UltraCartRestApiV2.ItemApiupdateDigitalItemPUT /item/digital_library/{digital_item_oid}Updates a file within the digital library
UltraCartRestApiV2.ItemApiupdateItemPUT /item/items/{merchant_item_oid}Update an item
UltraCartRestApiV2.ItemApiupdateItemsPUT /item/items/batchUpdate multiple items
UltraCartRestApiV2.ItemApiupdateReviewPUT /item/items/{merchant_item_oid}/reviews/{review_oid}Update a review
UltraCartRestApiV2.ItemApiuploadTemporaryMultimediaPOST /item/temp_multimediaUpload an image to the temporary multimedia.
UltraCartRestApiV2.OauthApioauthAccessTokenPOST /oauth/tokenExchange authorization code for access token.
UltraCartRestApiV2.OauthApioauthRevokePOST /oauth/revokeRevoke this OAuth application.
UltraCartRestApiV2.OrderApiadjustOrderTotalPOST /order/orders/{order_id}/adjust_order_total/{desired_total}Adjusts an order total
UltraCartRestApiV2.OrderApicancelOrderPOST /order/orders/{order_id}/cancelCancel an order
UltraCartRestApiV2.OrderApideleteOrderDELETE /order/orders/{order_id}Delete an order
UltraCartRestApiV2.OrderApiduplicateOrderPOST /order/orders/{order_id}/duplicateDuplicate an order
UltraCartRestApiV2.OrderApiformatPOST /order/orders/{order_id}/formatFormat order
UltraCartRestApiV2.OrderApigenerateInvoiceGET /order/orders/{order_id}/invoiceGenerate an invoice for this order.
UltraCartRestApiV2.OrderApigenerateOrderTokenGET /order/orders/token/{order_id}Generate an order token for a given order id
UltraCartRestApiV2.OrderApigeneratePackingSlipAllDCGET /order/orders/{order_id}/packing_slipGenerate a packing slip for this order across all distribution centers.
UltraCartRestApiV2.OrderApigeneratePackingSlipSpecificDCGET /order/orders/{order_id}/packing_slip/{distribution_center_code}Generate a packing slip for this order for the given distribution center.
UltraCartRestApiV2.OrderApigetAccountsReceivableRetryConfigGET /order/accountsReceivableRetryConfigRetrieve A/R Retry Configuration
UltraCartRestApiV2.OrderApigetAccountsReceivableRetryStatsGET /order/accountsReceivableRetryConfig/statsRetrieve A/R Retry Statistics
UltraCartRestApiV2.OrderApigetOrderGET /order/orders/{order_id}Retrieve an order
UltraCartRestApiV2.OrderApigetOrderByTokenPOST /order/orders/tokenRetrieve an order using a token
UltraCartRestApiV2.OrderApigetOrderEdiDocumentsGET /order/orders/{order_id}/ediRetrieve EDI documents associated with this order.
UltraCartRestApiV2.OrderApigetOrdersGET /order/ordersRetrieve orders
UltraCartRestApiV2.OrderApigetOrdersBatchPOST /order/orders/batchRetrieve order batch
UltraCartRestApiV2.OrderApigetOrdersByQueryPOST /order/orders/queryRetrieve orders by query
UltraCartRestApiV2.OrderApiinsertOrderPOST /order/ordersInsert an order
UltraCartRestApiV2.OrderApiisRefundableOrderGET /order/orders/{order_id}/refundableDetermine if an order can be refunded
UltraCartRestApiV2.OrderApiprocessPaymentPOST /order/orders/{order_id}/process_paymentProcess payment
UltraCartRestApiV2.OrderApirefundOrderPUT /order/orders/{order_id}/refundRefund an order
UltraCartRestApiV2.OrderApireplacementPOST /order/orders/{order_id}/replacementReplacement order
UltraCartRestApiV2.OrderApiresendReceiptPOST /order/orders/{order_id}/resend_receiptResend receipt
UltraCartRestApiV2.OrderApiresendShipmentConfirmationPOST /order/orders/{order_id}/resend_shipment_confirmationResend shipment confirmation
UltraCartRestApiV2.OrderApiupdateAccountsReceivableRetryConfigPOST /order/accountsReceivableRetryConfigUpdate A/R Retry Configuration
UltraCartRestApiV2.OrderApiupdateOrderPUT /order/orders/{order_id}Update an order
UltraCartRestApiV2.OrderApivalidateOrderPOST /order/validateValidate
UltraCartRestApiV2.SsoApigetSsoSessionUserGET /sso/session/userGet single sign on session user
UltraCartRestApiV2.SsoApissoAuthorizePUT /sso/authorizeAuthorize a single sign on session
UltraCartRestApiV2.SsoApissoSessionRevokeDELETE /sso/session/revokeRevoke single sign on session
UltraCartRestApiV2.SsoApissoTokenPUT /sso/tokenExchange a single sign on code for a simple key token
UltraCartRestApiV2.StorefrontApiaddToLibraryPOST /storefront/code_libraryAdd to library
UltraCartRestApiV2.StorefrontApiapplyToStoreFrontPOST /storefront/code_library/applyApply library item to storefront.
UltraCartRestApiV2.StorefrontApiarchiveEmailListPOST /storefront/{storefront_oid}/email/lists/{email_list_uuid}/archiveArchive email list
UltraCartRestApiV2.StorefrontApiarchiveEmailSegmentPOST /storefront/{storefront_oid}/email/segments/{email_segment_uuid}/archiveArchive email segment
UltraCartRestApiV2.StorefrontApibackPopulateEmailFlowPOST /storefront/{storefront_oid}/email/flows/{email_flow_uuid}/backfillBack populate email flow
UltraCartRestApiV2.StorefrontApicheckDownloadEmailSegmentPOST /storefront/{storefront_oid}/email/segments/{email_segment_uuid}/downloadPrepare/{email_segment_rebuild_uuid}Check download of email segment
UltraCartRestApiV2.StorefrontApicloneEmailCampaignPOST /storefront/{storefront_oid}/email/campaigns/{email_campaign_uuid}/cloneClone email campaign
UltraCartRestApiV2.StorefrontApicloneEmailFlowPOST /storefront/{storefront_oid}/email/flows/{email_flow_uuid}/cloneClone email flow
UltraCartRestApiV2.StorefrontApicreateEmailSendingDomainPOST /storefront/email/sending_domains/{domain}/createCreate email campaign
UltraCartRestApiV2.StorefrontApicreateEmailSendingDomain2POST /storefront/email/sending_domainsCreate email sending domain for various providers
UltraCartRestApiV2.StorefrontApicreateFsDirectoryPOST /storefront/{id}/fs/dirCreate file manager directory
UltraCartRestApiV2.StorefrontApicreateTwilioAccountPOST /storefront/twilio/accountsCreate Twilio account
UltraCartRestApiV2.StorefrontApideleteEmailCampaignFolderDELETE /storefront/{storefront_oid}/email/campaign_folders/{email_campaign_folder_uuid}Delete email campaignFolder
UltraCartRestApiV2.StorefrontApideleteEmailCommseqStatDELETE /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/statDelete communication sequence stats
UltraCartRestApiV2.StorefrontApideleteEmailEmailDELETE /storefront/{storefront_oid}/email/emails/{commseq_email_uuid}Delete email email
UltraCartRestApiV2.StorefrontApideleteEmailFlowFolderDELETE /storefront/{storefront_oid}/email/flow_folders/{email_flow_folder_uuid}Delete email flowFolder
UltraCartRestApiV2.StorefrontApideleteEmailListCustomerDELETE /storefront/{storefront_oid}/email/lists/{email_list_uuid}/customers/{email_customer_uuid}Delete email list customer
UltraCartRestApiV2.StorefrontApideleteEmailListSegmentFolderDELETE /storefront/{storefront_oid}/email/list_segment_folders/{email_list_segment_folder_uuid}Delete email ListSegmentFolder
UltraCartRestApiV2.StorefrontApideleteEmailPostcardDELETE /storefront/{storefront_oid}/email/postcards/{commseq_postcard_uuid}Delete email postcard
UltraCartRestApiV2.StorefrontApideleteEmailSendingDomainDELETE /storefront/email/sending_domains/{domain}delete email campaign
UltraCartRestApiV2.StorefrontApideleteExperimentDELETE /storefront/{storefront_oid}/experiments/{storefront_experiment_oid}Delete experiment
UltraCartRestApiV2.StorefrontApideleteFsFileDELETE /storefront/{id}/fs/fileDelete file manager directory
UltraCartRestApiV2.StorefrontApideleteHeatmapDELETE /storefront/{storefront_oid}/screen_recordings/heatmapDelete screen recording heatmap
UltraCartRestApiV2.StorefrontApideleteLibraryItemDELETE /storefront/code_library/{library_item_oid}Delete library item
UltraCartRestApiV2.StorefrontApideleteLibraryItemPublishedVersionsDELETE /storefront/code_library/{library_item_oid}/published_versionsDelete all published versions for a library item, including anything in review.
UltraCartRestApiV2.StorefrontApideleteScreenRecordingSegmentDELETE /storefront/{storefront_oid}/screen_recordings/segments/{screen_recording_segment_oid}Delete screen recording segment
UltraCartRestApiV2.StorefrontApideleteTwilioAccountDELETE /storefront/twilio/accounts/{esp_twilio_uuid}delete Twilio account
UltraCartRestApiV2.StorefrontApiduplicateLibraryItemPOST /storefront/code_library/{library_item_oid}/duplicateDuplicate library item.
UltraCartRestApiV2.StorefrontApifavoriteScreenRecordingPOST /storefront/{storefront_oid}/screen_recordings/{screen_recording_uuid}/favoriteUpdate favorite flag on screen recording
UltraCartRestApiV2.StorefrontApigeocodeAddressPOST /storefront/{storefront_oid}/email/geocodeObtain lat/long for an address
UltraCartRestApiV2.StorefrontApigetCountriesGET /storefront/{storefront_oid}/email/countriesGet countries
UltraCartRestApiV2.StorefrontApigetEditorTokenGET /storefront/{storefront_oid}/editor_tokenGets editor token
UltraCartRestApiV2.StorefrontApigetEmailBaseTemplatesGET /storefront/{storefront_oid}/email/baseTemplatesGet email communication base templates
UltraCartRestApiV2.StorefrontApigetEmailCampaignGET /storefront/{storefront_oid}/email/campaigns/{email_campaign_uuid}Get email campaign
UltraCartRestApiV2.StorefrontApigetEmailCampaignFolderGET /storefront/{storefront_oid}/email/campaign_folders/{email_campaign_folder_uuid}Get email campaign folder
UltraCartRestApiV2.StorefrontApigetEmailCampaignFoldersGET /storefront/{storefront_oid}/email/campaign_foldersGet email campaign folders
UltraCartRestApiV2.StorefrontApigetEmailCampaignScreenshotsGET /storefront/{storefront_oid}/email/campaigns/{email_campaign_uuid}/screenshotsGet email campaign screenshots
UltraCartRestApiV2.StorefrontApigetEmailCampaignsGET /storefront/{storefront_oid}/email/campaignsGet email campaigns
UltraCartRestApiV2.StorefrontApigetEmailCampaignsWithStatsGET /storefront/{storefront_oid}/email/campaignsWithStats/{stat_days}Get email campaigns with stats
UltraCartRestApiV2.StorefrontApigetEmailCommseqGET /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}Get email commseq
UltraCartRestApiV2.StorefrontApigetEmailCommseqEmailStatsPOST /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/emailStatsGet email communication sequence emails stats
UltraCartRestApiV2.StorefrontApigetEmailCommseqPostcardStatsPOST /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/postcardStatsGet email communication sequence postcard stats
UltraCartRestApiV2.StorefrontApigetEmailCommseqPostcardTrackingGET /storefront/{storefront_oid}/email/postcards/{commseq_postcard_uuid}/trackingGet email communication postcard tracking
UltraCartRestApiV2.StorefrontApigetEmailCommseqRateLimitersGET /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/rate_limitersGet email commseq rate limiters
UltraCartRestApiV2.StorefrontApigetEmailCommseqSmsStatsPOST /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/smsStatsGet email communication sequence sms stats
UltraCartRestApiV2.StorefrontApigetEmailCommseqStatOverallGET /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/statGet communication sequence stats overall
UltraCartRestApiV2.StorefrontApigetEmailCommseqStepStatsPOST /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/stepStatsGet email communication sequence step stats
UltraCartRestApiV2.StorefrontApigetEmailCommseqStepWaitingPOST /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/waitingGet email communication sequence customers waiting at each requested step
UltraCartRestApiV2.StorefrontApigetEmailCommseqWebhookEditorValuesGET /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/webhookEditorValuesGet email webhook editor values
UltraCartRestApiV2.StorefrontApigetEmailCommseqsGET /storefront/{storefront_oid}/email/commseqsGet email commseqs
UltraCartRestApiV2.StorefrontApigetEmailCustomerEditorUrlGET /storefront/{storefront_oid}/email/customers/{email_customer_uuid}/editor_urlGet customers editor URL
UltraCartRestApiV2.StorefrontApigetEmailCustomersGET /storefront/{storefront_oid}/email/customersGet email customers
UltraCartRestApiV2.StorefrontApigetEmailDashboardActivityGET /storefront/{storefront_oid}/email/dashboard_activityGet email dashboard activity
UltraCartRestApiV2.StorefrontApigetEmailDashboardStatsGET /storefront/{storefront_oid}/email/dashboard_statsGet dashboard stats
UltraCartRestApiV2.StorefrontApigetEmailDispatchLogsGET /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/steps/{commseq_step_uuid}/logsGet email dispatch logs
UltraCartRestApiV2.StorefrontApigetEmailEmailGET /storefront/{storefront_oid}/email/emails/{commseq_email_uuid}Get email email
UltraCartRestApiV2.StorefrontApigetEmailEmailClicksGET /storefront/{storefront_oid}/email/commseqs/{commseq_uuid}/steps/{commseq_step_uuid}/emails/{commseq_email_uuid}/clicksGet email email clicks
UltraCartRestApiV2.StorefrontApi[**getEmailEmailCustomerEditorUr
3.10.217

9 months ago

3.10.216

10 months ago

3.10.215

11 months ago

3.10.214

11 months ago

3.10.213

1 year ago

3.10.207

1 year ago

3.10.206

1 year ago

3.10.209

1 year ago

3.10.208

1 year ago

3.10.210

1 year ago

3.10.212

1 year ago

3.10.211

1 year ago

3.10.205

1 year ago

3.10.204

1 year ago

3.10.203

1 year ago

3.10.202

1 year ago

3.10.201

1 year ago

3.10.200

1 year ago

3.10.199

1 year ago

3.10.198

1 year ago

3.10.195

1 year ago

3.10.197

1 year ago

3.10.196

1 year ago

3.10.194

1 year ago

3.10.193

1 year ago

3.10.192

1 year ago

3.10.191

1 year ago

3.10.190

1 year ago

3.10.189

1 year ago

3.10.188

1 year ago

3.10.187

1 year ago

3.10.186

1 year ago

3.10.185

1 year ago

3.10.184

1 year ago

3.10.183

1 year ago

3.10.182

1 year ago

3.10.181

2 years ago

3.10.180

2 years ago

3.10.179

2 years ago

3.10.178

2 years ago

3.10.177

2 years ago

4.0.189

2 years ago

4.0.188

2 years ago

4.0.192

2 years ago

4.0.190

2 years ago

4.0.191

2 years ago

3.10.173

2 years ago

3.10.172

2 years ago

3.10.175

2 years ago

3.10.174

2 years ago

3.10.171

2 years ago

4.0.181

2 years ago

4.0.182

2 years ago

4.0.180

2 years ago

4.0.185

2 years ago

4.0.186

2 years ago

4.0.183

2 years ago

4.0.184

2 years ago

4.0.187

2 years ago

3.10.166

2 years ago

3.10.165

2 years ago

3.10.168

2 years ago

3.10.167

2 years ago

3.10.164

2 years ago

3.10.163

2 years ago

3.10.169

2 years ago

3.10.170

2 years ago

4.0.156

2 years ago

4.0.157

2 years ago

4.0.158

2 years ago

4.0.159

2 years ago

4.0.160

2 years ago

4.0.163

2 years ago

4.0.164

2 years ago

4.0.161

2 years ago

4.0.162

2 years ago

4.0.167

2 years ago

4.0.168

2 years ago

4.0.165

2 years ago

4.0.166

2 years ago

4.0.169

2 years ago

4.0.170

2 years ago

4.0.171

2 years ago

4.0.174

2 years ago

4.0.175

2 years ago

4.0.172

2 years ago

4.0.173

2 years ago

4.0.178

2 years ago

4.0.179

2 years ago

4.0.176

2 years ago

4.0.177

2 years ago

3.10.159

2 years ago

3.10.158

2 years ago

3.10.162

2 years ago

3.10.161

2 years ago

3.10.160

2 years ago

3.10.148

2 years ago

3.10.147

2 years ago

3.10.149

2 years ago

3.10.155

2 years ago

3.10.154

2 years ago

3.10.157

2 years ago

3.10.156

2 years ago

3.10.151

2 years ago

3.10.150

2 years ago

3.10.153

2 years ago

3.10.152

2 years ago

3.10.139

2 years ago

3.10.144

2 years ago

3.10.143

2 years ago

3.10.146

2 years ago

3.10.145

2 years ago

3.10.140

2 years ago

3.10.142

2 years ago

3.10.141

2 years ago

4.0.120-RC

2 years ago

4.0.121-RC

2 years ago

4.0.119-RC

2 years ago

4.0.123-RC

2 years ago

4.0.127

2 years ago

4.0.128

2 years ago

4.0.129

2 years ago

4.0.130

2 years ago

4.0.131

2 years ago

4.0.134

2 years ago

4.0.135

2 years ago

4.0.132

2 years ago

4.0.133

2 years ago

4.0.138

2 years ago

4.0.139

2 years ago

4.0.136

2 years ago

4.0.137

2 years ago

4.0.141

2 years ago

4.0.142

2 years ago

4.0.140

2 years ago

4.0.145

2 years ago

4.0.146

2 years ago

4.0.143

2 years ago

4.0.144

2 years ago

4.0.149

2 years ago

4.0.147

2 years ago

4.0.148

2 years ago

3.10.119

2 years ago

3.10.118

2 years ago

3.10.115

2 years ago

3.10.114

2 years ago

3.10.117

2 years ago

3.10.116

2 years ago

3.10.122

2 years ago

3.10.121

2 years ago

3.10.124

2 years ago

3.10.123

2 years ago

4.0.152

2 years ago

4.0.153

2 years ago

4.0.150

2 years ago

3.10.120

2 years ago

4.0.151

2 years ago

4.0.154

2 years ago

4.0.155

2 years ago

3.10.108

2 years ago

3.10.107

2 years ago

3.10.109

2 years ago

3.10.104

2 years ago

3.10.103

2 years ago

3.10.106

2 years ago

3.10.105

2 years ago

3.10.111

2 years ago

3.10.110

2 years ago

3.10.113

2 years ago

3.10.112

2 years ago

3.10.100

2 years ago

3.10.102

2 years ago

3.10.101

2 years ago

4.0.122-RC

2 years ago

4.0.115-RC

2 years ago

4.0.114-RC

2 years ago

3.10.137

2 years ago

3.10.136

2 years ago

3.10.138

2 years ago

3.10.129

2 years ago

3.10.126

2 years ago

3.10.125

2 years ago

3.10.128

2 years ago

3.10.127

2 years ago

3.10.133

2 years ago

3.10.132

2 years ago

3.10.135

2 years ago

3.10.134

2 years ago

3.10.131

2 years ago

3.10.130

2 years ago

4.0.126-RC

2 years ago

4.0.124-RC

2 years ago

4.0.125-RC

2 years ago

3.10.97

2 years ago

3.10.98

2 years ago

3.10.99

2 years ago

4.0.118-RC

2 years ago

4.0.117-RC

2 years ago

4.0.116-RC

2 years ago

4.0.109-RC

3 years ago

4.0.82-RC

3 years ago

4.0.81-RC

3 years ago

4.0.93-RC

3 years ago

4.0.108-RC

3 years ago

4.0.91-RC

3 years ago

4.0.107-RC

3 years ago

4.0.92-RC

3 years ago

4.0.79-RC

3 years ago

4.0.80-RC

3 years ago

4.0.112-RC

3 years ago

4.0.95-RC

3 years ago

4.0.101-RC

3 years ago

4.0.96-RC

3 years ago

4.0.100-RC

3 years ago

4.0.84-RC

3 years ago

4.0.83-RC

3 years ago

4.0.94-RC

3 years ago

4.0.111-RC

3 years ago

4.0.110-RC

3 years ago

4.0.87-RC

3 years ago

4.0.98-RC

3 years ago

4.0.76-RC

3 years ago

4.0.75-RC

3 years ago

4.0.103-RC

3 years ago

4.0.102-RC

3 years ago

4.0.86-RC

3 years ago

4.0.85-RC

3 years ago

4.0.113-RC

2 years ago

4.0.74-RC

3 years ago

4.0.97-RC

3 years ago

3.10.95

3 years ago

3.10.96

2 years ago

4.0.90-RC

3 years ago

3.10.90

3 years ago

3.10.93

3 years ago

3.10.94

3 years ago

3.10.91

3 years ago

3.10.92

3 years ago

3.10.75

3 years ago

3.10.76

3 years ago

3.10.73

3 years ago

3.10.74

3 years ago

3.10.79

3 years ago

4.0.89-RC

3 years ago

3.10.77

3 years ago

3.10.78

3 years ago

3.10.71

3 years ago

3.10.72

3 years ago

3.10.70

3 years ago

3.10.86

3 years ago

4.0.106-RC

3 years ago

3.10.87

3 years ago

3.10.84

3 years ago

3.10.85

3 years ago

3.10.88

3 years ago

3.10.89

3 years ago

3.10.82

3 years ago

3.10.83

3 years ago

3.10.80

3 years ago

3.10.81

3 years ago

4.0.78-RC

3 years ago

3.10.59

3 years ago

3.10.57

3 years ago

3.10.58

3 years ago

4.0.77-RC

3 years ago

3.10.64

3 years ago

3.10.65

3 years ago

3.10.62

3 years ago

3.10.63

3 years ago

3.10.68

3 years ago

3.10.69

3 years ago

3.10.66

3 years ago

3.10.67

3 years ago

3.10.60

3 years ago

3.10.61

3 years ago

4.0.105-RC

3 years ago

4.0.99-RC

3 years ago

4.0.104-RC

3 years ago

4.0.88-RC

3 years ago

4.0.58-RC

3 years ago

4.0.69-RC

3 years ago

4.0.70-RC

3 years ago

4.0.68-RC

3 years ago

4.0.62-RC

3 years ago

4.0.73-RC

3 years ago

4.0.61-RC

3 years ago

4.0.72-RC

3 years ago

4.0.60-RC

3 years ago

4.0.71-RC

3 years ago

4.0.59-RC

3 years ago

4.0.64-RC

3 years ago

4.0.63-RC

3 years ago

4.0.67-RC

3 years ago

4.0.66-RC

3 years ago

3.10.53

3 years ago

3.10.54

3 years ago

3.10.51

3 years ago

3.10.52

3 years ago

3.10.55

3 years ago

3.10.56

3 years ago

3.10.50

3 years ago

4.0.65-RC

3 years ago

3.10.48

3 years ago

3.10.49

3 years ago

3.10.42

3 years ago

3.10.43

3 years ago

3.10.41

3 years ago

3.10.46

3 years ago

3.10.47

3 years ago

3.10.44

3 years ago

3.10.45

3 years ago

3.10.17

3 years ago

3.10.18

3 years ago

3.10.19

3 years ago

3.10.10

3 years ago

3.10.13

3 years ago

3.10.14

3 years ago

3.10.11

3 years ago

3.10.12

3 years ago

4.0.25-RC

3 years ago

4.0.48-RC

3 years ago

3.10.28

3 years ago

3.10.29

3 years ago

3.10.26

3 years ago

3.10.27

3 years ago

3.10.20

3 years ago

3.10.21

3 years ago

3.10.24

3 years ago

3.10.25

3 years ago

3.10.22

3 years ago

3.10.23

3 years ago

4.0.5

3 years ago

4.0.53-RC

3 years ago

4.0.43-RC

3 years ago

4.0.37-RC

3 years ago

4.0.49-RC

3 years ago

4.0.52-RC

3 years ago

4.0.44-RC

3 years ago

3.10.3

3 years ago

4.0.57-RC

3 years ago

4.0.38-RC

3 years ago

4.0.33-RC

3 years ago

4.0.51-RC

3 years ago

4.0.45-RC

3 years ago

4.0.56-RC

3 years ago

4.0.39-RC

3 years ago

4.0.40-RC

3 years ago

4.0.34-RC

3 years ago

3.10.5

3 years ago

3.10.4

3 years ago

3.10.7

3 years ago

3.10.6

3 years ago

4.0.50-RC

3 years ago

3.10.9

3 years ago

3.10.8

3 years ago

4.0.23-RC

3 years ago

4.0.46-RC

3 years ago

4.0.55-RC

3 years ago

4.0.6-RC

3 years ago

4.0.24-RC

3 years ago

4.0.41-RC

3 years ago

4.0.35-RC

3 years ago

3.10.39

3 years ago

4.0.47-RC

3 years ago

3.10.37

3 years ago

3.10.38

3 years ago

3.10.31

3 years ago

3.10.32

3 years ago

3.10.30

3 years ago

3.10.35

3 years ago

3.10.36

3 years ago

3.10.33

3 years ago

3.10.34

3 years ago

4.0.54-RC

3 years ago

3.10.40

3 years ago

4.0.42-RC

3 years ago

4.0.36-RC

3 years ago

3.9.8

3 years ago

3.9.7

3 years ago

3.9.6

3 years ago

3.10.1

3 years ago

3.10.0

3 years ago

3.10.2

3 years ago

3.9.3

3 years ago

3.9.2

3 years ago

3.9.5

3 years ago

3.9.4

3 years ago

3.9.1

3 years ago

3.9.0

3 years ago

3.8.8

3 years ago

3.8.7

3 years ago

3.8.6

3 years ago

3.7.38

3 years ago

3.8.0

3 years ago

3.8.2

3 years ago

3.8.1

3 years ago

3.8.5

3 years ago

3.6.27

4 years ago

3.6.37

3 years ago

3.6.36

4 years ago

3.6.35

4 years ago

3.6.34

4 years ago

3.6.33

4 years ago

3.6.32

4 years ago

3.6.38

3 years ago

3.6.24

4 years ago

3.6.23

4 years ago

3.6.22

4 years ago

3.6.21

4 years ago

3.6.20

4 years ago

3.6.19

4 years ago

3.6.18

4 years ago

3.6.17

4 years ago

3.6.16

4 years ago

3.6.15

4 years ago

3.6.14

4 years ago

3.6.13

4 years ago

3.6.12

4 years ago

3.6.11

4 years ago

3.6.10

4 years ago

3.6.9

4 years ago

3.6.8

4 years ago

3.6.6

4 years ago

3.6.7

4 years ago

3.6.5

4 years ago

3.6.4

4 years ago

3.6.1

4 years ago

3.6.3

4 years ago

3.6.0

4 years ago

3.5.3

4 years ago

3.5.2

4 years ago

3.4.13

4 years ago

3.5.1

4 years ago

3.5.0

4 years ago

3.4.12

4 years ago

3.4.11

4 years ago

3.4.10

4 years ago

3.4.8

4 years ago

3.4.7

4 years ago

3.4.9

4 years ago

3.4.4

4 years ago

3.4.3

4 years ago

3.4.6

4 years ago

3.4.5

4 years ago

3.4.2

4 years ago

3.4.1

4 years ago

3.4.0

4 years ago

3.3.1

4 years ago

3.3.2

4 years ago

3.3.0

4 years ago

3.2.15

4 years ago

3.2.13

4 years ago

3.2.14

4 years ago

3.2.12

4 years ago

3.2.11

4 years ago

3.2.10

4 years ago

3.2.9

4 years ago

3.2.8

4 years ago

3.2.7

4 years ago

3.2.6

4 years ago

3.2.4

4 years ago

3.2.3

4 years ago

3.1.47

4 years ago

3.1.49

4 years ago

3.1.48

4 years ago

3.1.45

4 years ago

3.1.44

4 years ago

3.1.46

4 years ago

3.1.43

4 years ago

3.1.42

4 years ago

3.1.37

4 years ago

3.1.39

4 years ago

3.1.32

4 years ago

3.1.41

4 years ago

3.1.40

4 years ago

3.1.25

4 years ago

3.1.27

4 years ago

3.1.26

4 years ago

3.1.28

4 years ago

3.1.24

4 years ago

3.1.23

4 years ago

3.1.22

4 years ago

3.1.16

4 years ago

3.1.18

4 years ago

3.1.17

4 years ago

3.1.15

4 years ago

3.1.14

4 years ago

3.1.13

4 years ago

3.1.9

4 years ago

3.1.8

4 years ago

3.1.12

4 years ago

3.1.11

4 years ago

3.1.10

4 years ago

3.1.7

4 years ago

3.1.6

4 years ago

3.1.5

4 years ago

3.1.4

4 years ago

3.1.3

4 years ago

3.1.2

4 years ago

3.1.1

4 years ago

3.0.76

4 years ago

3.1.0

4 years ago

3.0.75

4 years ago

3.0.70

4 years ago

3.0.69

4 years ago

3.0.67

4 years ago

3.0.68

4 years ago

3.0.66

4 years ago

3.0.65

4 years ago

3.0.63

4 years ago

3.0.64

4 years ago

3.0.54

5 years ago

3.0.53

5 years ago

3.0.52

5 years ago

3.0.50

5 years ago

3.0.49

5 years ago

3.0.47

5 years ago

3.0.44

5 years ago

3.0.43

5 years ago

3.0.42

5 years ago

3.0.41

5 years ago

3.0.40

5 years ago

3.0.39

5 years ago

3.0.38

5 years ago

3.0.37

5 years ago

3.0.35

5 years ago

3.0.33

5 years ago

3.0.32

5 years ago

3.0.31

5 years ago

3.0.30

5 years ago

3.0.27

5 years ago

3.0.28

5 years ago

3.0.29

5 years ago

3.0.24

5 years ago

3.0.23

5 years ago

3.0.19

5 years ago

3.0.17

5 years ago

3.0.18

5 years ago

3.0.16

5 years ago

3.0.15

5 years ago

3.0.14

5 years ago

3.0.13

5 years ago

3.0.12

5 years ago

3.0.11

5 years ago

3.0.8

5 years ago

3.0.6

5 years ago

3.0.5

5 years ago

2.4.123

5 years ago

2.4.122

5 years ago

2.4.121

5 years ago

2.4.120

5 years ago

2.4.119

5 years ago

2.4.118

5 years ago

2.4.117

5 years ago

2.4.116

5 years ago

2.4.115

5 years ago

2.4.114

5 years ago

2.4.113

5 years ago

2.4.112

5 years ago

2.4.111

5 years ago

2.4.110

5 years ago

2.4.109

5 years ago

2.4.108

5 years ago

2.4.107

5 years ago

2.4.106

5 years ago

2.4.105

5 years ago

2.4.103

5 years ago

2.4.102

5 years ago

2.4.101

5 years ago

2.4.99

5 years ago

2.4.100

5 years ago

2.4.98

5 years ago

2.4.97

5 years ago

2.4.96

5 years ago

2.4.95

5 years ago

2.4.94

5 years ago

2.4.93

5 years ago

2.4.92

5 years ago

2.4.91

5 years ago

2.4.89

5 years ago

2.4.88

5 years ago

2.4.90

5 years ago

2.4.87

5 years ago

2.4.86

5 years ago

2.4.85

5 years ago

2.4.84

5 years ago

2.4.83

5 years ago

2.4.82

5 years ago

2.4.81

5 years ago

2.4.80

5 years ago

2.4.79

5 years ago

2.4.78

5 years ago

2.4.77

5 years ago

2.4.76

5 years ago

2.4.75

5 years ago

2.4.74

5 years ago

2.4.72

5 years ago

2.4.73

5 years ago

2.4.71

5 years ago

2.4.70

5 years ago

2.4.69

5 years ago

2.4.68

5 years ago

2.4.67

5 years ago

2.4.66

5 years ago

2.4.65

5 years ago

2.4.64

6 years ago

2.4.61

6 years ago

2.4.63

6 years ago

2.4.62

6 years ago

2.4.60

6 years ago

2.4.51

6 years ago

2.4.50

6 years ago

2.4.49

6 years ago

2.4.48

6 years ago

2.4.47

6 years ago

2.4.46

6 years ago

2.4.45

6 years ago

2.4.44

6 years ago

2.4.43

6 years ago

2.4.42

6 years ago

2.4.41

6 years ago

2.4.40

6 years ago

2.4.39

6 years ago

2.4.38

6 years ago

2.4.37

6 years ago

2.4.36

6 years ago

2.4.35

6 years ago

2.4.34

6 years ago

2.4.33

6 years ago

2.4.32

6 years ago

2.4.31

6 years ago

2.4.30

6 years ago

2.4.29

6 years ago

2.4.28

6 years ago

2.4.27

6 years ago

2.4.24

6 years ago

2.4.23

6 years ago

2.4.22

6 years ago

2.4.21

6 years ago

2.4.20

6 years ago

2.4.19

6 years ago

2.4.18

6 years ago

2.4.17

6 years ago

2.4.15

6 years ago

2.4.14

6 years ago

2.4.13

6 years ago

2.4.12

6 years ago

2.4.11

6 years ago

2.4.10

6 years ago

2.4.9

6 years ago

2.4.8

6 years ago

2.4.7

6 years ago

2.4.6

6 years ago

2.4.5

6 years ago

2.4.4

6 years ago

2.4.3

6 years ago

2.4.2

6 years ago

2.4.1

6 years ago

2.4.0

6 years ago

2.3.24

6 years ago

2.3.21

6 years ago

2.3.20

6 years ago

2.3.19

6 years ago

2.3.18

6 years ago

2.3.17

6 years ago

2.3.16

6 years ago

2.3.6

7 years ago

2.3.5

7 years ago

2.3.2

7 years ago

2.3.1

7 years ago

2.2.1

7 years ago

2.2.0

7 years ago

2.1.0

7 years ago

2.0.9

7 years ago

2.0.8

7 years ago

2.0.7

7 years ago

2.0.6

7 years ago

2.0.5

7 years ago

2.0.4

8 years ago

2.0.3

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago