Projects
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
GET /organization/v1/projects HTTP/1.1
Host: api.skysql.com/
X-API-Key: YOUR_API_KEY
Accept: */*
[
{
"created_by": "text",
"created_on": 1,
"description": "text",
"id": "text",
"is_default": true,
"name": "text",
"updated_by": "text",
"updated_on": 1
}
]POST /organization/v1/projects HTTP/1.1
Host: api.skysql.com/
X-API-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 36
{
"description": "text",
"name": "text"
}PUT /organization/v1/projects HTTP/1.1
Host: api.skysql.com/
X-API-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 36
{
"description": "text",
"name": "text"
}GET /organization/v1/projects/{project_id} HTTP/1.1
Host: api.skysql.com/
X-API-Key: YOUR_API_KEY
Accept: */*
{
"created_by": "text",
"created_on": 1,
"description": "text",
"id": "text",
"is_default": true,
"name": "text",
"updated_by": "text",
"updated_on": 1
}