createProject
Create a new project with a title and email using the DeepWriter API key for authentication. Streamlines project setup for content generation and management.
Instructions
Create a new project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | Yes | The DeepWriter API key for authentication. | |
Yes | The email associated with the project. | ||
title | Yes | The title for the new project. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"api_key": {
"description": "The DeepWriter API key for authentication.",
"type": "string"
},
"email": {
"description": "The email associated with the project.",
"format": "email",
"type": "string"
},
"title": {
"description": "The title for the new project.",
"type": "string"
}
},
"required": [
"api_key",
"title",
"email"
],
"type": "object"
}