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
  • Body
  • Response
  • Samples

Was this helpful?

Export as PDF
  1. Lease

Sign Lease

Signs a lease agreement.

POST /v3/leases/:leaseId/sign

Signs a lease using ip address as primary key

Request

Path Parameters

Name
Type
Description

leaseId

string

Lease id

Headers

Name
Type
Description

Customer-Token

string

Customer's authentication token

Authorization

string

Authorization token

Body

Name
Type
Description

ipAddress

string

The IP address of the device that was used to sign the lease.

timestamp

string

The date and time of the lease's signing.

signed

boolean

The signed status of the lease (true: lease was signed, false: lease not signed).

Response

Samples

{
    "data": {}
}
{
  "error": {
    "statusCode": 404,
    "code": "LeaseNotFound",
    "message": "The lease was not found",
    "data": {}
  }
}
PreviousGet Transaction By IDNextFinalize Lease

Last updated 9 days ago

Was this helpful?