Skip to main content
Published: February 04 2011, 2:52:00 PMUpdated: August 17 2022, 2:07:54 PM

I would like to know in which cases the GetSellerTransactions call returns TransactionArray.Transaction.Status.CheckoutStatus the state SellerResponded.

If a buyer purchased an item and requested the seller for the total before completing checkout, then the TransactionArray.Transaction.Status.CheckoutStatus changes to BuyerRequestsTotal. Once the seller responds to this request for the buyer, the TransactionArray.Transaction.Status.CheckoutStatus changes to SellerResponded.

Below are sample snippets from the GetSellerTransactions for the transaction that show the transition of the CheckoutStatus field -

 After buyer purchased the item

      <CreatedDate>2011-02-04T19:38:38.000Z</CreatedDate>
       <Status>
        <eBayPaymentStatus>NoPaymentFailure</eBayPaymentStatus>
        <CheckoutStatus>CheckoutIncomplete</CheckoutStatus>
        <LastTimeModified>2011-02-04T19:38:39.000Z</LastTimeModified>
        <PaymentMethodUsed>None</PaymentMethodUsed>
        <CompleteStatus>Incomplete</CompleteStatus>
        <BuyerSelectedShipping>false</BuyerSelectedShipping>
        <PaymentHoldStatus>None</PaymentHoldStatus>
        <IntegratedMerchantCreditCardEnabled>false</IntegratedMerchantCreditCardEnabled>
      </Status>
      <TransactionID>611212955008</TransactionID>
      </Transaction>

After buyer requested total -

  <CreatedDate>2011-02-04T19:38:38.000Z</CreatedDate>
      <DepositType>None</DepositType>
      <QuantityPurchased>1</QuantityPurchased>
      <Status>
        <eBayPaymentStatus>NoPaymentFailure</eBayPaymentStatus>
        <CheckoutStatus>BuyerRequestsTotal</CheckoutStatus>
        <LastTimeModified>2011-02-04T19:47:15.000Z</LastTimeModified>
        <PaymentMethodUsed>None</PaymentMethodUsed>
        <CompleteStatus>Incomplete</CompleteStatus>
        <BuyerSelectedShipping>false</BuyerSelectedShipping>
        <PaymentHoldStatus>None</PaymentHoldStatus>
        <IntegratedMerchantCreditCardEnabled>false</IntegratedMerchantCreditCardEnabled>
      </Status>
      <TransactionID>611212955008</TransactionID>
    </Transaction>

After Seller responded to buyer request -

  <CreatedDate>2011-02-04T19:38:38.000Z</CreatedDate>
      <Status>
        <eBayPaymentStatus>NoPaymentFailure</eBayPaymentStatus>
        <CheckoutStatus>SellerResponded</CheckoutStatus>
        <LastTimeModified>2011-02-04T20:01:28.000Z</LastTimeModified>
        <PaymentMethodUsed>None</PaymentMethodUsed>
        <CompleteStatus>Incomplete</CompleteStatus>
        <BuyerSelectedShipping>false</BuyerSelectedShipping>
        <PaymentHoldStatus>None</PaymentHoldStatus>
        <IntegratedMerchantCreditCardEnabled>false</IntegratedMerchantCreditCardEnabled>
      </Status>
      <TransactionID>611212955008</TransactionID>
      </Transaction>

After buyer completes checkout -

<CreatedDate>2011-02-04T19:38:38.000Z</CreatedDate>
      <Status>
        <eBayPaymentStatus>NoPaymentFailure</eBayPaymentStatus>
        <CheckoutStatus>CheckoutComplete</CheckoutStatus>
        <LastTimeModified>2011-02-04T21:47:02.000Z</LastTimeModified>
        <PaymentMethodUsed>PayPal</PaymentMethodUsed>
        <CompleteStatus>Complete</CompleteStatus>
        <BuyerSelectedShipping>true</BuyerSelectedShipping>
        <PaymentHoldStatus>None</PaymentHoldStatus>
        <IntegratedMerchantCreditCardEnabled>false</IntegratedMerchantCreditCardEnabled>
      </Status>
       <TransactionID>611212955008</TransactionID>
       <ExternalTransaction>
        <ExternalTransactionID>7LY20014TT511654B</ExternalTransactionID>
        <ExternalTransactionTime>2011-02-04T20:47:01.000Z</ExternalTransactionTime>
        <FeeOrCreditAmount currencyID="USD">0.0</FeeOrCreditAmount>
        <PaymentOrRefundAmount currencyID="USD">1.0</PaymentOrRefundAmount>
      </ExternalTransaction>
      <ShippingServiceSelected>
        <ShippingService>ShippingMethodStandard</ShippingService>
        <ShippingServiceCost currencyID="USD">0.0</ShippingServiceCost>
      </ShippingServiceSelected>
     </Transaction>

 

How well did this answer your question?
Answers others found helpful