Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.apphttps://kyc-api.surepass.app| 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") |
| article_id | Integer | Yes | Specific article ID for the stamp type |
| first_party_address | String | No | Address of the first party |
| courier_address | String | No | Address where the stamp should be couriered |
| first_party_father_name | String | No | Father's name of the first party |
| amount | Integer | Yes | The stamp duty amount in INR |
| consideration_amount | Integer | Yes | The consideration amount for the agreement |
| state | String | Yes | Two-letter state code where the stamp will be issued |
| description | String | No | Brief description of the stamp purpose |
| quantity | Integer | Yes | Number of identical stamps to order |
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.first_party_father_name | String | First party name |
| data.first_party_address | String | First party address |
| 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.courier_address | String | Courier address of the stamp |
| 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",
"first_party_father_name": null,
"first_party_address": null,
"second_party": "Borrower",
"article_id": "22128",
"state": "DL",
"courier_address": null,
"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 'Authorization: Bearer <token>' \
--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"
}