API
Projects
List projects

List Projects

  • Name
    get
    Type
    /v1/projects
    Description

    Send a GET request to list projects.

Request

Example

curl -X GET "https://api.simplystack.com/v1/projects" \
  -H "Content-Type: application/json" \
  -H "Authorization: Token d359ad9cc9422b5ff07aede0cd2707da4ff82be0" \
 

Response

JSON object with a key named projects which is an array of the following attributes for the standard project object:

Attributes

See project model.

Example

{
  "projects": [
    {
      "uuid": "7dc8b292-7b4a-4e99-a0ba-73b62055ab81",
      "budget": "0.00",
      "color": "#0061FF",
      "created_at": "2021-02-01T00:00:02.602000Z",
      "description": null,
      "environment": "Development",
      "is_default": true,
      "name": "MyProject",
      "owner_uuid": "3f80a877-3a80-4200-9e31-271b512cc726",
      "stacklets_count": 1,
      "team": null,
      "updated_at": "2021-02-01T00:00:02.602000Z"
    }
  ],
  "meta": {
    "pagination": {
      "current_page": 1,
      "next_page": null,
      "pages": 1,
      "per_page": 25,
      "previous_page": null,
      "total": 1
    },
    "query": null,
    "sort": null
  }
}