White Label Admin - Create a new project within white label context.
Create a new free tier project. This is an API only available to white label admins.
Authorizations
Path parameters
organizationIdintegerRequired
Organization ID
Body
projectNamestringRequiredExample:
The name of the project.
My project
projectVisibilitystring · enumOptionalPossible values:
The visibility of the project, either public or private. Public projects can be viewed by anyone on the internet and edited by collaborators. Private projects can only be viewed and edited by collaborators.
ownerIdintegerOptionalExample:
Unique identifier of the owner of the new project. Either this parameter or ownerEmail must be set.
1
ownerEmailstringOptionalExample:
Email of the owner of the new project. Either this parameter or ownerId must be set.
[email protected]
Responses
200
OK
application/json
Responseall of
post
POST /v1/api/organizations/{organizationId}/whitelabel/projects HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 105
{
"projectName": "My project",
"projectVisibility": "public",
"ownerId": 1,
"ownerEmail": "[email protected]"
}
200
OK
{
"success": true,
"error": "text",
"id": 1,
"apiKey": "text"
}
PreviousWhite Label Admin - Get all white label projectsNextWhite Label Admin - Get a white label project
Last updated
Was this helpful?