Proposals
GET List proposals
List proposals with status, contact, and date filters.
Endpoint
GET https://api.strideops.ai/v1/proposalsReturns a cursor-paginated list of envelopes ordered by createdAt desc.
Query parameters
| Param | Type | Notes |
|---|---|---|
limit | int | 1-100, default 50. |
cursor | string | From the previous response's nextCursor. |
status | enum | Filter by envelope status. |
contactId | uuid | Filter to envelopes for one contact. |
createdAfter | iso8601 | |
createdBefore | iso8601 | |
q | string | Full-text match on title. |
Response
{
"data": [
{
"id": "env_…",
"secondaryId": "P-1042",
"title": "Acme Corp - Q2 Engagement",
"status": "pending",
"totalAmount": "5000.00",
"currency": "USD",
"createdAt": "2026-05-25T20:14:00Z"
}
],
"nextCursor": "eyJjcmVhdGVkQXQiOiIyMDI2LTA1LT…"
}Example
curl 'https://api.strideops.ai/v1/proposals?status=pending&limit=20' \
-H "Authorization: Bearer $STRIDE_API_KEY"