POST
/organizations/{organizationId}/projects
curl \
--request POST 'https://tadatodo.com/api/organizations/Oae77f34bbf9/projects' \
--header "X-API-Key: $API_KEY" \
--data '{"name":"my project"}'
Request examples
{
"name": "my project"
}
Response examples (200)
{
"id": "string",
"name": "string",
"plugins": [
{
"author": "string",
"configUrl": "string",
"description": "string",
"flair": "string",
"id": "string",
"name": "string",
"uiConfigType": "string"
}
],
"rows": [
{
"columns": [
{
"id": "string",
"name": "string"
}
],
"id": "string",
"name": "string"
}
]
}