create_project
imerit_ango.sdk.SDK.
create_project(name, description, project_type)
Create a new project in your organization.
Parameters
name: string
The display name of the project to be created. This field is required and cannot be left empty.
Example:
'Project One'
description: string, optional, default ""
A brief description of the project.
Example:
'Vehicle Classification Project'
project_type: ProjectType, optional, default None
Specifies the type of the project.
Options:
ProjectType.Ango
ProjectType.PCT
ProjectType.IFrame
from imerit_ango.models.enums import ProjectType
Returns:
output: dict
A dictionary containing the result of the operation.
Including a
statusfield indicating whether the request was successful and adatafield containing the response payload with updated resources produced by the operation.
Example
Create a standard Ango project:
Create a PCT project:
Last updated