FlexShopper API
3.0-legacy
FlexShopper API
3.0-legacy
  • Getting Started
  • Our Platforms
    • FlexPay Payment Platform
    • FlexShopper Backend API
  • API Reference
    • Get Started
      • API Requests
      • API Responses
      • Error Codes
    • User Management
      • Create User
      • Get Users
      • Get User
      • Verify User Exists
      • Deeply Verify User Exists
      • Get LoanPaymentPro Child Key
      • Add Payment Method
    • Customer Authentication
      • Request Passcode
      • Login Customer
    • Customer Application
      • Initiate Application
      • Get Verification Questions
      • Verify Answers
      • Validate Routing Number
    • Lease Management
      • Create Lease
      • Get Lease By ID
      • Sign Lease
      • Checkout
    • Purchase Transactions
      • Get Transactions
      • Get Transaction By ID
      • Cancel Items
      • Return Items
      • Confirm Shipment
      • Confirm Receipt
    • Products
      • Get Products
    • Settings
  • Change Log
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. API Reference
  2. Purchase Transactions

Confirm Receipt

Confirms that the customer receipt the items at the store

/v3/transactions/{transactionId}/confirm-receipt

GET https://apis.sandbox.flexshopper.com/v3/transactions/{transactionId}/confirm-receipt

Path Parameters

Name
Type
Description

transactionId

string

The transaction ID provided at lease generation.

Headers

Name
Type
Description

Authorization

string

Authorization token

Request Body

Name
Type
Description

items

array

The items receipt by the customer.

items.sku

string

The SKU of the item in the shipment.

receiptDate

string

The date shipped to the carrier.

quantity

string

The number of items of this type in this receipt, defaults to one.

{
    "data": {}
}
{
  "error": {
    "statusCode": 404,
    "code": "TransactionNotFound",
    "message": "The transaction with the provided id was not found",
    "data": {}
  }
}

If an item is present without a quantity, all of that item will be marked as receipt.

PreviousConfirm ShipmentNextProducts

Last updated 6 years ago

Was this helpful?