POST /folders/{id}
curl \
-X POST https://getcody.ai/api/v1/folders/{id} \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name":"string"}'
Request example
{
"name": "string"
}
Response examples (200)
{
"data": {
"id": "string",
"name": "string",
"created_at": 42
}
}