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
  • Request
  • Path Parameters
  • Headers
  • Response
  • Samples

Was this helpful?

Export as PDF
  1. Lease

Finalize Lease

Finalize a transaction.

POST /v3/transactions/:transactionId/finalize

After the lease is signed, the lease must be finalized (confirmed).

Request

Path Parameters

Name
Type
Description

transactionId

string

Transaction Id

Headers

Name
Type
Description

Authorization

string

Authorization token

Response

Samples

{
  "data": {
    "transactionId": "ABC-129384",
    "loanNumber": "1234567",
    "leaseNumber": "1234567"
  }
}
{
  "error": {
    "statusCode": 404,
    "code": "TransactionNotFound",
    "message": "The transaction with the provided id was not found",
    "data": {}
  }
}
PreviousSign LeaseNextCancel Items

Last updated 9 days ago

Was this helpful?