Template
Add template signing steps
Get Started
Guides
- Account
- Envelopes
- Templates
- Webhooks
Backend SDKs
- Python
- Typescript
- Go
- Java
- C#
- PHP
API Reference
- Envelope
- Template
- POSTCreate new template
- POSTList templates
- GETGet template
- DELDelete template
- POSTDuplicate template
- POSTAdd template document
- GETGet template document
- GETGet template documents
- POSTAdd template signing steps
- PUTRename template
- PUTSet template comment
- PUTSet template notification
- GETGet template annotations
- GETGet document template annotations
- POSTAdd template annotation
- DELDelete template annotation
- POST
- Webhook
Template
Add template signing steps
POST
/
template
/
{template_id}
/
signing_steps
curl --request POST \
--url https://restapi.sign.plus/v2/template/{template_id}/signing_steps \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"signing_steps": [
{
"recipients": [
{
"id": "<string>",
"uid": "<string>",
"name": "<string>",
"email": "<string>",
"role": "SIGNER"
}
]
}
]
}'
{
"id": "<string>",
"name": "<string>",
"comment": "<string>",
"pages": 123,
"legality_level": "SES",
"created_at": 123,
"updated_at": 123,
"expiration_delay": 123,
"num_recipients": 123,
"signing_steps": [
{
"recipients": [
{
"id": "<string>",
"uid": "<string>",
"name": "<string>",
"email": "<string>",
"role": "SIGNER"
}
]
}
],
"documents": [
{
"id": "<string>",
"name": "<string>",
"filename": "<string>",
"page_count": 123,
"pages": [
{
"width": 123,
"height": 123
}
]
}
],
"notification": {
"subject": "<string>",
"message": "<string>",
"reminder_interval": 123
},
"dynamic_fields": [
"<string>"
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/json
Response
200 - application/json
Signing steps added successfully
The response is of type object
.
curl --request POST \
--url https://restapi.sign.plus/v2/template/{template_id}/signing_steps \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"signing_steps": [
{
"recipients": [
{
"id": "<string>",
"uid": "<string>",
"name": "<string>",
"email": "<string>",
"role": "SIGNER"
}
]
}
]
}'
{
"id": "<string>",
"name": "<string>",
"comment": "<string>",
"pages": 123,
"legality_level": "SES",
"created_at": 123,
"updated_at": 123,
"expiration_delay": 123,
"num_recipients": 123,
"signing_steps": [
{
"recipients": [
{
"id": "<string>",
"uid": "<string>",
"name": "<string>",
"email": "<string>",
"role": "SIGNER"
}
]
}
],
"documents": [
{
"id": "<string>",
"name": "<string>",
"filename": "<string>",
"page_count": 123,
"pages": [
{
"width": 123,
"height": 123
}
]
}
],
"notification": {
"subject": "<string>",
"message": "<string>",
"reminder_interval": 123
},
"dynamic_fields": [
"<string>"
]
}