Proposals
POST Send proposal
Transition a draft proposal to pending and email the recipient.
Endpoint
POST https://api.strideops.ai/v1/proposals/{id}/sendTransitions the envelope from draft → pending, emails the recipient, and starts the reminder cron (3 / 7 / 14 days by default).
If approval rules are configured for this envelope's category, the status transitions to in_review instead and the recipient is only notified after all approvers sign off.
Path parameters
| Param | Type | Notes |
|---|---|---|
id | uuid | Envelope id from create response. |
Response
{
"id": "env_…",
"status": "pending",
"sentAt": "2026-05-25T20:18:42Z",
"recipients": [
{
"contactId": "ctc_8f3e…",
"email": "buyer@acme.example",
"status": "pending"
}
]
}Example
curl -X POST https://api.strideops.ai/v1/proposals/env_8f3e…/send \
-H "Authorization: Bearer $STRIDE_API_KEY"