Get E-Sign Status
Use this API to get the status of the initiated e-sign verification. You need to enter either the verification ID or reference ID.
Authorizations
Client ID. You can find your ID in the Merchant Dashboard.
Client secret key. You can find your secret key in the Merchant Dashboard.
Headers
Send the signature if IP is not whitelisted
Query Parameters
It is the unique ID created by Cashfree Payments that you receive in the response of Create E-Sign Request API.
format: int64
It is the unique ID you create to identify the Create E-Sign Request API.
Response
Success response for Get E-Sign Status
It displays the status of the e-signature. Possible values are: - IN_PROGRESS
: Signing process is initiated. - SUCCESS
: All the signers signed successfully. - EXPIRED
: Signing window expired. - FAILURE
: Error occured during signing the document.
"IN_PROGRESS"
It displays the unique ID created by Cashfree Payments for reference purposes.
format: int64
32
It displays the unique ID created by you to identify the API request.
"ABC00123"
It displays the unique ID created by Cashfree Payments to identify the uploaded document.
36
It contains the details of the signer(s).
[
{
"name": "John Doe",
"status": "RECEIVED",
"is_notified": false
},
{
"name": "John Snow",
"status": "SIGN_INITIATED",
"is_notified": true
},
{
"name": "Frank Kelvin",
"status": "SIGN_IN_PROGRESS",
"is_notified": true
},
{
"name": "John Cena",
"status": "SUCCESS",
"is_notified": true
},
{
"name": "John Frank",
"status": "FAILURE",
"is_notified": true
},
{
"name": "Frank Doe",
"status": "EXPIRED",
"is_notified": true
}
]
It displays the link of the signed document.
"SIGNED_DOC_URL"
Was this page helpful?