Proposals
GET Get proposal
Retrieve a single proposal with recipients and signature state.
Endpoint
GET https://api.strideops.ai/v1/proposals/{id}Returns the envelope plus all recipients, their signature state, and any payment intent.
Path parameters
| Param | Type | Notes |
|---|---|---|
id | uuid | Envelope id. |
Response
{
"id": "env_…",
"secondaryId": "P-1042",
"title": "Acme Corp - Q2 Engagement",
"status": "pending",
"totalAmount": "5000.00",
"currency": "USD",
"sentAt": "2026-05-25T20:18:42Z",
"expiresAt": null,
"recipients": [
{
"contactId": "ctc_8f3e…",
"email": "buyer@acme.example",
"status": "viewed",
"viewedAt": "2026-05-25T20:32:11Z",
"signedAt": null
}
],
"paymentIntent": null
}Example
curl https://api.strideops.ai/v1/proposals/env_8f3e… \
-H "Authorization: Bearer $STRIDE_API_KEY"