Authorizations
Your unique client identifier issued by Cashfree. You can find this in your Merchant Dashboard.
The secret key associated with your client ID. Use this to authenticate your API requests. You can find this in your Merchant Dashboard.
Headers
Send the signature if two-factor authentication is selected as Public Key. More details
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 retrieving the status of an e-signature request
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,
"meta_data": {
"name": null,
"gender": null,
"year_of_birth": null,
"postal_code": null,
"state": null,
"country": null,
"serial_number": null,
"ip_address": null,
"latitude": null,
"longitude": null,
"signing_time": null,
"aadhaar_last_four_digit": null
}
},
{
"name": "John Snow",
"status": "SIGN_INITIATED",
"is_notified": true,
"meta_data": {
"name": null,
"gender": null,
"year_of_birth": null,
"postal_code": null,
"state": null,
"country": null,
"serial_number": null,
"ip_address": null,
"latitude": null,
"longitude": null,
"signing_time": null,
"aadhaar_last_four_digit": null
}
},
{
"name": "Frank Kelvin",
"status": "SIGN_IN_PROGRESS",
"is_notified": true,
"meta_data": {
"name": null,
"gender": null,
"year_of_birth": null,
"postal_code": null,
"state": null,
"country": null,
"serial_number": null,
"ip_address": null,
"latitude": null,
"longitude": null,
"signing_time": null,
"aadhaar_last_four_digit": null
}
},
{
"name": "John Cena",
"status": "SUCCESS",
"is_notified": true,
"meta_data": {
"name": "John Doe",
"gender": "M",
"year_of_birth": "1990",
"postal_code": "560012",
"state": "Karnataka",
"country": "India",
"serial_number": "ABC123456789",
"ip_address": "192.168.1.1",
"latitude": "12.9716",
"longitude": "77.5946",
"signing_time": "2023-10-01T12:00:00Z",
"aadhaar_last_four_digit": "1234"
}
},
{
"name": "John Frank",
"status": "FAILURE",
"is_notified": true,
"meta_data": {
"name": null,
"gender": null,
"year_of_birth": null,
"postal_code": null,
"state": null,
"country": null,
"serial_number": null,
"ip_address": null,
"latitude": null,
"longitude": null,
"signing_time": null,
"aadhaar_last_four_digit": null
}
},
{
"name": "Frank Doe",
"status": "EXPIRED",
"is_notified": true,
"meta_data": {
"name": null,
"gender": null,
"year_of_birth": null,
"postal_code": null,
"state": null,
"country": null,
"serial_number": null,
"ip_address": null,
"latitude": null,
"longitude": null,
"signing_time": null,
"aadhaar_last_four_digit": null
}
}
]
It displays the link to the signed document.
"SIGNED_DOC_URL"