createProject
POST/v1/projects
Create a project
Request
- application/json
Body
required
name stringrequired
Responses
- 200
- 400
- 401
- 403
- 404
Newly created project
- application/json
- Schema
- Example (from schema)
Schema
id stringrequired
organisation_id stringrequired
name stringrequired
created_at date-timerequired
updated_at date-timerequired
{
"id": "abcdefghijklmnopqrstuvwxyz",
"organisation_id": "abcdefghijklmnopqrstuvwxyz",
"name": "Development App",
"created_at": "2024-04-09T08:49:18.715Z",
"updated_at": "2024-04-09T08:49:18.715Z"
}
Client provided an invalid request
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
status integerrequired
reason stringrequired
description string
details object
property name* string[]
string
{
"status": 400,
"reason": "Reason",
"description": "string",
"details": {}
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
status integerrequired
reason stringrequired
description string
details object
property name* string[]
string
{
"status": 400,
"reason": "Reason",
"description": "string",
"details": {}
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
status integerrequired
reason stringrequired
description string
details object
property name* string[]
string
{
"status": 400,
"reason": "Reason",
"description": "string",
"details": {}
}
Resource not found
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
status integerrequired
reason stringrequired
description string
details object
property name* string[]
string
{
"status": 400,
"reason": "Reason",
"description": "string",
"details": {}
}
Loading...