Create a document session for a recipient to view and sign a document. This endpoint returns a session ID that can be used to generate a document link for sharing.Once a sessionID has been generated via this endpoint, it can be placed in the following URL share for sharing: Request
Body Params application/json
{
"recipient": "test@mail.com",
"lifetime": 900
}
Request Code Samples
curl --location --request POST '/documents/ZPeAfcpzr9aiVs5vqUf6jg/session' \
--header 'Content-Type: application/json' \
--data-raw '{
"recipient": "test@mail.com",
"lifetime": 900
}'
Responses
{
"id": "nPh2PDhFdDqAES9k64h9qX",
"expires_at": "2024-07-01T08:03:57.536427Z"
}
Modified at 2024-09-17 17:28:25