Create a project
Allows clients to create a project container for datasets, analyses, and model use.
Request:
POST /api/public/v1/createProject
{ name: string, description?: string }
The name field provides the name of the new project. The optional
description field describes it.
Constraints: name and description can be at most 255 characters.
The name must be unique across all projects.
Response:
{ payload: { projectId: string }, status: "success" }
The projectId field identifies the new project for later reference.
Example
$ http --body https://jadapi.jadbio.com/api/public/v1/createProject \
"Authorization: Bearer $(cat ~/.jadtoken)" \
name="First cohorte"
{
"payload": { "projectId": "16" },
"status": "success"
}
Note of appreciation to JADBio users
We constantly make changes in the software and do our best to update these materials, but you may notice some differences. We welcome your feedback on how to make this more useful for you and requests for future tutorials.