CreateProject Method
Description
Creates a new project in your Skeddly account.
HTTP Request
POST https://api.skeddly.com/api/Projects/
Body
The body is a JSON structure with the following properties.
name
Name for the new project.
Type: string
Required: Yes
Returns
A Project object.
Sample Request
POST /api/Projects HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>
Content-Type: application/json
{
"name": "My Project"
}
Sample Response
{
"projectId": "proj-12345678",
"name": "My Project",
"status": "active",
"isDefault": false,
"createdDate": "2023-01-26T12:00:00:Z",
"lastModifiedDate": "2023-01-26T12:00:00:Z",
"lastModifiedBy": "u-12345678"
}
Last updated