Retrieves all CheckoutChamp orders associated with a customer’s email address to view complete order history and details.
This integration searches Checko... Read More
Retrieves all CheckoutChamp orders associated with a customer’s email address to view complete order history and details.
This integration searches CheckoutChamp for all orders placed by a specific customer email address. It returns comprehensive order information including purchase history, product details, payment information, fulfillment status, and customer data. Perfect for customer service teams who need to quickly access a customer’s complete order history and transaction details.
Returns an array of order objects with detailed information including order_id, order_status, total_amount, currency_code, customer details (customer_first_name, customer_last_name, customer_email), payment information (card_type, card_last4, payment_source), campaign details (campaign_name, campaign_id), order dates (date_created, date_updated), and nested arrays for items (products purchased with pricing and quantities) and fulfillments (shipping status and tracking).
{
"page": 1,
"result": "SUCCESS",
"total_results": 2,
"orders": [
{
"order_id": "ABC123XYZ9",
"actual_order_id": 789456,
"external_order_id": "6842699710694",
"client_order_id": "ABC123XYZ9",
"order_status": "COMPLETE",
"order_type": "NEW_SALE",
"total_amount": "89.97",
"currency_code": "USD",
"date_created": "2024-03-15 14:23:45",
"date_updated": "2024-03-15 14:25:12",
"customer_id": 456789,
"customer_email": "sarah.mitchell@example.com",
"customer_first_name": "Sarah",
"customer_last_name": "Mitchell",
"campaign_id": 12,
"campaign_name": "[US] Premium Skincare",
"payment_source": "CREDITCARD",
"card_type": "VISA",
"card_last4": "1234",
"items": [
{
"product_id": "201",
"product_name": "Anti-Aging Serum Trio",
"quantity": "1",
"price": "68.00",
"sales_tax": "5.44",
"product_type": "OFFER",
"order_item_id": "987654",
"transaction_item_id": "123789",
"merchant_id": "1",
"response_type": "SUCCESS"
}
],
"fulfillments": [
{
"fulfillment_id": 67890,
"fulfillment_house_id": null,
"company": "System Fulfillment",
"status": "SHIPPED",
"date_created": "2024-03-15 14:23:45",
"items": [
{
"fulfillment_item_id": "445566",
"product_id": "201",
"name": "Anti-Aging Serum Trio",
"sku": "SERUM-TRIO-001",
"quantity": "1",
"price": "68.00",
"sales_tax": "5.44",
"status": "SHIPPED"
}
]
}
]
}
]
} Read LessRetrieves detailed product information from CheckoutChamp using a specific product ID.
This integration connects to CheckoutChamp’s product database to fe... Read More
Retrieves detailed product information from CheckoutChamp using a specific product ID.
This integration connects to CheckoutChamp’s product database to fetch comprehensive details about a specific product. You can quickly access product information including pricing, inventory levels, descriptions, images, and fulfillment details by simply providing the product ID.
Returns a detailed product object containing comprehensive information including product_id, product_name, sku, description, price, shipping_price, currency, stock_qty, product_type, category_id, category_name, fulfillment_cycle, threshold_qty, weight, campaign_id, image_paths (array of product images), and main_image. Also includes pagination details like result status, total_results, and page number.
{
"result": "SUCCESS",
"total_results": 1,
"page": 1,
"products": [{
"product_id": 145,
"product_name": "Rejuvenating Face Serum",
"sku": "RFS2024",
"description": "Premium anti-aging serum with vitamin C and hyaluronic acid. Scientifically formulated to reduce fine lines and restore skin elasticity. Suitable for all skin types.nnKey Benefits:nReduces Fine Lines & WrinklesnBoosts Collagen ProductionnHydrates & Plumps Skin",
"price": "42.99",
"shipping_price": "5.99",
"currency": "$",
"stock_qty": "87",
"product_type": "OFFER",
"category_id": "8",
"category_name": "premium-skincare.myshopify.com",
"fulfillment_cycle": "RECURRING",
"threshold_qty": 25,
"weight": "0.285",
"campaign_id": 12,
"image_paths": [
"https://cdn.example.com/products/serum-main-01.webp",
"https://cdn.example.com/products/serum-ingredients-02.webp",
"https://cdn.example.com/products/serum-usage-03.webp"
],
"main_image": "https://cdn.example.com/products/serum-main-01.webp"
}]
} Read LessSearches CheckoutChamp for customer records using email address and optional date filters.
This integration retrieves comprehensive customer information from Ch... Read More
Searches CheckoutChamp for customer records using email address and optional date filters.
This integration retrieves comprehensive customer information from CheckoutChamp, including contact details, billing and shipping addresses, payment methods, order history notes, and campaign associations. You can search for a specific customer by email address or query all customers within a date range to analyze customer data and support interactions.
Returns detailed customer records including customer_id, first_name, last_name, email_address, phone_number, complete billing_address and shipping_address objects, primary payment method details (card_type, card_last4, card_expiry_date), all payment_sources on file, campaign_name, date_created, most_recent_activity, and the latest_three_notes with order and refund history.
{
"result": "SUCCESS",
"total_results": 1,
"page": 1,
"customers": [{
"customer_id": 445782,
"first_name": "Sarah",
"last_name": "Johnson",
"email_address": "sarah.johnson@example.com",
"phone_number": "5551234567",
"billing_address": {
"address1": "123 Main Street",
"city": "Los Angeles",
"state": "CA",
"country": "US",
"postal_code": "90210"
},
"shipping_address": {
"address1": "123 Main Street",
"city": "Los Angeles",
"state": "CA",
"country": "US",
"postal_code": "90210"
},
"primary_payment_source_id": 201847,
"primary_payment_source_type": "CREDITCARD",
"card_type": "VISA",
"card_last4": "1234",
"card_expiry_date": "2028-06-30",
"campaign_name": "[US] Premium Campaign",
"date_created": "2024-03-15 14:22:18",
"most_recent_activity": "2024-08-20 16:45:12",
"latest_three_notes": [{
"message": "Order #A1B2C3D4E5 shipped successfully.",
"agentName": "support@example.com",
"dateCreated": "2024-08-20 16:45:12"
}],
"payment_sources": [{
"payment_source_id": 201847,
"is_primary": "1",
"payment_source_type": "CREDITCARD",
"card_type": "VISA",
"card_last4": "1234",
"card_expiry_date": "2028-06-30"
}]
}]
} Read LessRetrieves transaction records from CheckoutChamp filtered by customer email and date range.
This integration searches CheckoutChamp for all transaction records ... Read More
Retrieves transaction records from CheckoutChamp filtered by customer email and date range.
This integration searches CheckoutChamp for all transaction records matching a specific customer email address within a defined date range. It returns detailed transaction information including payment details, order items, customer information, and fulfillment status – perfect for customer service teams who need to quickly review a customer’s complete purchase history.
Returns a comprehensive list of transactions with key information including transaction_id, order_id, total_amount, currency_code, date_created, transaction_type, response_type, customer details (customer_first_name, customer_last_name, customer_email), payment information (card_type, card_last4, payment_source), campaign details (campaign_name, campaign_id), and an items array containing product details like product_name, sku, price, quantity, shipping, sales_tax, and fulfillment_status.
{
"page": 1,
"result": "SUCCESS",
"total_results": 3,
"transactions": [
{
"transaction_id": 500142,
"order_id": "A7B9C3D8E2",
"client_order_id": "A7B9C3D8E2",
"actual_order_id": 425861,
"date_created": "2024-03-15 14:22:18",
"transaction_type": "SALE",
"response_type": "SUCCESS",
"response_text": "COMPLETED",
"total_amount": "24.95",
"currency_code": "USD",
"customer_id": 198432,
"customer_email": "alex.martinez@example.com",
"customer_first_name": "Alex",
"customer_last_name": "Martinez",
"campaign_id": "7",
"campaign_name": "[US] Beauty Plus",
"merchant_id": 1,
"merchant_name": "PayPal Commerce",
"payment_source": "CREDITCARD",
"payment_source_id": "85724",
"card_type": "MASTERCARD",
"card_last4": "2847",
"is_chargedback": 0,
"parent_transaction_id": null,
"items": [
{
"transaction_item_id": "758291",
"product_id": "203",
"product_name": "Premium Lip Serum",
"sku": "B00LPS01",
"product_type": "OFFER",
"price": "19.99",
"quantity": "1",
"shipping": "4.95",
"sales_tax": "0.01",
"fulfillment_status": "SHIPPED"
}
]
}
]
} Read Less