Projects
post
Creates a project in the workspace linked to the current API Key
Body
nameany ofOptional
stringOptional
nullOptional
Responses
201
created
application/json
401
not authenticated
500
general error
post
/projectsget
Retrieves a list of all resources from the service.
Query parameters
$limitintegerOptional
Number of results to return
$skipintegerOptional
Number of results to skip
Responses
200
success
application/json
401
not authenticated
500
general error
get
/projectsget
Retrieves a single resource with the given id from the service.
Path parameters
idintegerRequired
ID of Project to return
Responses
200
success
application/json
401
not authenticated
404
not found
500
general error
get
/projects/{id}patch
Updates the resource identified by id using data.
Path parameters
idintegerRequired
ID of Project to update
Body
idstringOptional
nameany ofOptional
stringOptional
nullOptional
updated_atstringOptional
created_atstringOptional
authorany ofOptional
or
nullOptional
ownerany ofOptional
or
nullOptional
Responses
200
success
application/json
401
not authenticated
404
not found
500
general error
patch
/projects/{id}delete
Removes the resource with id.
Path parameters
idintegerRequired
ID of Project to remove
Responses
200
success
application/json
401
not authenticated
404
not found
500
general error
delete
/projects/{id}Last updated