Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization
header as Bearer TOKEN
.https://sandbox.surepass.io
https://kyc-api.surepass.io
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token authentication using JWT |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
first_party | String | Yes | Name of the first party on the stamp paper |
second_party | String | Yes | Name of the second party (use generic terms like "Borrower") |
state | String (Enum) | Yes | Two-letter state code where the stamp will be issued |
article_id | Integer | Yes | Specific article ID for the stamp type |
amount | Integer | Yes | The stamp duty amount in INR |
consideration_amount | Integer | Yes | The consideration amount for the agreement |
quantity | Integer | Yes | Number of identical stamps to order |
description | String | Yes | Brief description of the stamp purpose |
state
parameter must be one of the following two-letter codes:DL
(Delhi)22128
{
"first_party": "ABC Pvt Ltd",
"second_party": "Borrower",
"state": "DL",
"article_id": 22128,
"amount": 40,
"consideration_amount": 1,
"quantity": 2,
"description": "Estamp"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains the stamp order details |
data.client_id | String | Unique identifier for the bulk stamp order |
data.created_at | String | Timestamp when the order was created (ISO format) |
data.amount | Integer | The stamp duty amount in INR |
data.consideration_amount | Integer | The consideration amount for the agreement |
data.first_party | String | Name of the first party on the stamp paper |
data.second_party | String | Name of the second party |
data.article_id | String | The article ID for the stamp type |
data.state | String | Two-letter state code where the stamp is issued |
data.quantity | Integer | Number of identical stamps ordered |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the request was successful |
message | String | Human-readable status message |
message_code | String | Machine-readable status code |
{
"data": {
"client_id": "bulk_stamp_v2_qSHjxvcozLbbKjwmGVCc",
"created_at": "2025-01-13T14:34:33.904783",
"amount": 40,
"consideration_amount": 1,
"first_party": "ABC Pvt Ltd",
"second_party": "Borrower",
"article_id": "22128",
"state": "DL",
"quantity": 2
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"status_code": 400,
"success": false,
"message": "Invalid parameters provided",
"message_code": "invalid_parameters"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/stamper-v2/bulk-order-stamp' \
--header 'Content-Type: application/json' \
--data-raw '{
"first_party": "ABC Pvt Ltd",
"second_party": "Borrower",
"state": "DL",
"article_id": 22128,
"amount": 40,
"consideration_amount": 1,
"quantity": 2,
"description": "Estamp"
}'
{
"data": {
"client_id": "bulk_stamp_v2_qSHjxvcozLbbKjwmGVCc",
"created_at": "2025-01-13T14:34:33.904783",
"amount": 40,
"consideration_amount": 1,
"first_party": "ABC Pvt Ltd",
"second_party": "Borrower",
"article_id": "22128",
"state": "DL",
"quantity": 2
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}