Appearance
Create a new project
POST
/api/v1/projects
Create a new content project by providing a name and selecting a target platform. The project is initialized in draft status.
Authorizations
HTTPBearer
Type
HTTP (bearer)
Request Body
application/x-www-form-urlencoded
name
string
Required
platform
string
Required
Valid values
"woocommerce""shopify""magento2"Responses
Successful Response
application/json
{
"id": "string",
"name": "string",
"platform": "string",
"status": "string",
"settings": {
},
"created_at": "string",
"completed_at": "string",
"item_count": 0,
"flagged_count": 0,
"source_count": 0,
"deleted_at": "string",
"status_counts": {
"pending": 0,
"generated": 0,
"flagged": 0,
"approved": 0,
"rejected": 0,
"synced": 0,
"excluded": 0
},
"store_connection_id": "string",
"store_connection_name": "string"
}