Skip to main content

Create Division

POST 

/api/v1/divisions

Create a new Division. Requires editor role.

Request

Query Parameters

    createParents string

    Possible values: [true, false]

    Force creation of parent resources if they don't exist

    Default value: false

Body

Body

    workspace stringrequired

    Name of the Workspace

    Example: Workspace 1
    asset stringrequired

    Name of the Asset

    Example: Asset 1
    division stringrequired

    Name of the Division

    Example: Division 1
    description stringnullable

    Description of the Division

    Example: Description

Responses

Success

Schema

    id integerrequired

    ID of the Division

    Possible values: > 0

    Example: 1000
    name stringrequired

    Name of the Division

    Example: Division 1
    createdAt date-timerequired

    Creation Date of the Division

    Example: 2025-08-25T19:29:40.666Z
    updatedAt date-timerequired

    Update Date of the Division

    Example: 2025-08-25T19:29:40.666Z
    description stringnullablerequired

    Description of the Division

    Example: Description

    workspace

    object

    required

    id integerrequired

    ID of the Workspace

    Possible values: > 0

    Example: 1000
    name stringrequired

    Name of the Workspace

    Example: Workspace 1

    asset

    object

    required

    id integerrequired

    ID of the Asset

    Possible values: > 0

    Example: 1000
    name stringrequired

    Name of the Asset

    Example: Asset 1
Loading...