Description

Create a new model draft

Headers

content_type

application/json

content_language

en-US

Parameters

title required, type: String

Title of the model

description required, type: String

Model description

tags required, type: Array

Model tags, minimum 5

category required, type: String

Slug of models category.

subcategory required, type: String

Slug of models subcategory.

price optional, type: Float

Download price, default is 0.00

license required, type: String

Type of license, available options: royalty_free, editorial, custom.

custom_license optional, type: String

Custom license text. It is required if license is set to custom, only.

product_type optional, type: String

Represents type of model, available options: cg, printable. Default is cg.

game_ready optional, type: Boolean

Indicates whether the model is game ready Note: only applicable to CG models.

animated optional, type: Boolean

Indicates whether the model is animated Note: only applicable to CG models.

rigged optional, type: Boolean

Indicates whether the model is rigged. Note: only applicable to CG models.

info optional, type: Hash/Dictionary

Additional model information, such as number of polygons, vertices, whether the model has textures, etc. Possible geometry types: polygonal_mesh, subdivision_ready, nurbs, other. Values for unwrapped_uvs: unknown, non_overlapping, overlapping, mixed, no. Check the request example for more details. Note: only applicable to CG models.

Example Request

{
    "title": "Simple test model",
    "description": "This is a test model.",
    "tags": [
        "simple",
        "test",
        "model",
        "api",
        "example"
    ],
    "category": "car",
    "subcategoy": "sport",
    "price": 19.99,
    "license": "general",
    "game_ready": true,
    "info": {
        "polygons": 1024,
        "vertices": 2048,
        "geometry_type": "nurbs",
        "collection": false,
        "textures": true,
        "materials": true,
        "plugins_used": false,
        "uvw_mapping": true,
        "unwrapped_uvs": "overlapping"
    }
}

Example Response

{
    "success": true,
    "id": 123
}