Search Proposals
GET/api/proposals/search/{keyword}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| keyword | String | Search keyword |
curl -X GET "https://yoursite.com/api/proposals/search/acme" \
-H "authtoken: YOUR_API_TOKEN" Success-Response:
[
{
"id": "1",
"client_id": "2",
"proposal_date": "2021-09-15",
"status": "sent",
"note": "Proposal for new project"
}
]