Check Lien Status

This determines whether or not there is an active lien on the account supplied.

To check lien status on an account make a post request by passing AccountNo and Authentication Code in the request body to the check lien endpoint, They are both required to return a successful response.

// Live URL
http://api.mybankone.com/thirdpartyapiservice/apiservice/
Account/CheckLienStatus

POST https://staging.mybankone.com/thirdpartyapiservice/apiservice/Account/ CheckLienStatus

Request Body

Name
Type
Description

AccountNo*

String

Customer account

AuthenticationCode*

String

Authentication code for this request

{
    "RequestStatus": true,
 "ResponseDescription": "There is no lien on this account.",
 "ResponseStatus": "InActive"
}

Last updated