Proposal
List Proposals
GET /v1/proposals
URL Parameters
| Parameter | Description | |
|---|---|---|
| rows | A limit of objects to be returned, between 1 and 100 items | Optional | 
| page | The page for the list of objects to return | Optional | 
| cursor | The cursor of the current page list of objects | Optional | 
Response
The above request returns JSON structured like this:
| Parameter | Description | 
|---|---|
| total | The total of items | 
| items.id | The ID of the proposal | 
{
  "total": 0,
  "items": [
    {
      "id": "string"
    }
  ]
}