- Introduction
- OAuth
- API Endpoint
- Quick start with Zoho Sign's API
- Postman collection
- SwaggerHub
- Basic concepts
- Getting started with Zoho Sign's API under 2 minutes
- Signer groups
- Document Management
- POSTCreate document
- PUTUpdate document
- POSTSend document for signature
- POSTCorrect document
- GETGet details of a particular document
- GETGet documents list
- GETDownload PDF
- GETDownload particular PDF file
- GETDownload completion certificate
- GETGet document form data
- POSTRecall Document
- POSTRemind Recipient
- PUTDelete Document
- PUTExtend document
- POSTCreate new Folder
- GETGet folder list
- GETRetrieve field type
- GETGet document type
- POSTCreate new document type
- POSTUpdate document type
- Template Management
- Embedded Signing
- Embedded Sending
- Use Cases
- How-to guides
- Sending a signing request via SMS
- Enforce authentication
- Add fields to your document
- In-Person signing
- Sign documents with digital signature providers
- Sending documents in bulk
- eStamping
- Collecting payments from my recipients
- Adding witness to your envelope
- Manages recipients
- Sending an envelope to a signer group
- Replace signer group with normal recipients
- API error codes
- API limitation
- Security
- Contact details for technical assistance
I want to remove a signer group from my recipient list and add normal recipients to my envelope request. How can I achieve this?
To remove a signer group and replace them with normal recipients, you need to pass "is_signing_group" : false and pass "recipient_name": <name> and "recipient_email": <email> under actions.
Request example
data =
{
"requests": {
"request_type_id": "5000000000527",
"request_name": "Test Signing group",
"actions": [
{
"recipient_name": "test 1",
"recipient_email": "test1@zohosign.com",
"action_type": "SIGN",
"private_notes": "",
"is_bulk": false,
"language": "en",
"delivery_mode": "EMAIL",
"signing_order": 1,
"action_id": "5000000005061",
"is_signing_group": false,
"verify_recipient": false
}
],
"notes": "",
"expiration_days": 15,
"is_sequential": true,
"description": "",
"email_reminders": true,
"reminder_period": 5,
"validity": -1,
"deleted_actions": []
}
}
Show full
Show less
Response example
{
"code": 0,
"requests": {
"request_status": "draft",
"notes": "",
"reminder_period": 5,
"owner_id": "5000000002007",
"description": "",
"request_name": "Test Signing group",
"modified_time": 1747904483539,
"is_deleted": false,
"expiration_days": 15,
"is_sequential": true,
"templates_used": [],
"owner_first_name": "Nishanth S",
"sign_percentage": 0,
"owner_email": "nishanth.s@zohocorp.com",
"created_time": 1747838545937,
"email_reminders": true,
"self_sign": false,
"document_fields": [
{
"document_id": "5000000005042",
"fields": []
}
],
"in_process": false,
"validity": -1,
"request_type_name": "Others",
"request_id": "5000000005041",
"request_type_id": "5000000000527",
"owner_last_name": "",
"actions": [
{
"verify_recipient": false,
"recipient_countrycode_iso": "",
"action_type": "SIGN",
"private_notes": "",
"cloud_provider_name": "Zoho Sign",
"recipient_email": "test1@zohosign.com",
"send_completed_document": true,
"recipient_phonenumber": "",
"is_bulk": false,
"action_id": "5000000005061",
"signing_order": 1,
"cloud_provider_id": 10,
"recipient_name": "test 1",
"fields": [],
"delivery_mode": "EMAIL",
"action_status": "NOACTION",
"is_signing_group": false,
"recipient_countrycode": ""
}
]
},
"message": "Document has been updated",
"status": "success"
}
Show full
Show less
© 2025, Zoho Corporation Pvt. Ltd. All Rights Reserved.