API
Projects
Retrieve default project

Retrieve a Default Project

  • Name
    get
    Type
    /v1/projects/default
    Description

    Send a GET request to retrieve a default project.

Request

Example

curl -X GET "https://api.simplystack.com/v1/projects/7dc8b292-7b4a-4e99-a0ba-73b62055ab81" \
  -H "Content-Type: application/json" \
  -H "Authorization: Token d359ad9cc9422b5ff07aede0cd2707da4ff82be0"
 

Response

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

Attributes

See project model.

Example

json
{
  "project": {
    "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"
  }
}