FlexShopper API
3.0-preview
FlexShopper API
3.0-preview
  • Integration Guides
    • Medusa
    • Payment Plugin
  • Customer
    • Verify User Exists
    • Deeply Verify User Exists
    • Create User
    • Get Users
    • Get User
    • Create Authorization Token
    • Add Payment Method
      • Get LoanPaymentPro Child Key
      • Get Clover PKMS Key
  • Decision
    • Apply for Spending Limit
  • Lease
    • Create Lease
    • Get Transactions
    • Get Lease By ID
    • Get Transaction By ID
    • Sign Lease
    • Finalize Lease
    • Cancel Items
    • Return Items
    • Confirm Shipment
    • Confirm Receipt
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Lease

Confirm Receipt

Confirms that the customer receipt the items at the store

GET /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 Shipment

Last updated 9 days ago

Was this helpful?