Documentation Index
Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
Use this file to discover all available pages before exploring further.
Start E-Sign
Initiates the electronic signature flow for a proposal. Returns an object containing the signature request identifier that can be used to launch the e-sign UI.
Authentication
No authentication required — proposals are accessed via their unique identifier.
Path Parameters
The unique string identifier (GUID) of the proposal.
Request Body
No request body required.
Response
Signature request identifier.
Name of the signature request.
Examples
Start e-sign
POST /api/public/proposals/abc123-def456/esign/start
{
"Id": 42,
"Name": "Membership Agreement"
}
TypeScript Integration
import endpoints from '@/api/endpoints'
const result = await httpClient.post(endpoints.proposals.esign.start('abc123-def456').url)