Proposals

Manage proposals. Ability to create, edit, view, and delete proposals.

Available Endpoints

Method Path Description
GET /api/proposals List proposals
GET /api/proposals/{id} View proposal details
POST /api/proposals Create new proposal
PUT /api/proposals/{id} Full update of a proposal
PATCH /api/proposals/{id} Partial update of a proposal
DELETE /api/proposals/{id} Delete a proposal

Example Request

curl -X GET "https://example.com/api/proposals" \
  -H "Authorization: Bearer {token}"

Success Response (200)

{
  "records": [],
  "meta": {
    "total": 0,
    "current_page": 1,
    "per_page": 20
  }
}

Errors

Code Description
401 Invalid token
403 Access denied
404 Record not found
422 Validation error
Type to search...