Create a new asset
POST/asset
Create a new asset
Request
- application/json
Body
Asset data
url string
Asset URL
type string
schemaId schemaId (string)
Unique identifier for Schema
projectId projectId (string)
Unique identifier for Project
tags string[]
Asset tags
description string
Asset description
name assetName (string)required
Possible values: <= 32 characters
Name of the asset
data string
Asset data
Responses
- 201
- 400
- 401
- 403
- 404
- 500
- default
Asset successfully created
- application/json
- Schema
- Example (from schema)
Schema
url string
Asset URL
id string
Unique identifier for Asset
type string
schemaId schemaId (string)
Unique identifier for Schema
projectId projectId (string)
Unique identifier for Project
tags string[]
Asset tags
createdAt date-time
Time representation of Asset creation
description string
Asset description
name assetName (string)required
Possible values: <= 32 characters
Name of the asset
data string
Asset data
{
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"id": "a7qDzJ7XD",
"type": "tutorial",
"schemaId": "s2S7KuFGc",
"projectId": "p2Duhf5N6",
"tags": [
"adobeillustrator",
"border",
"imageborder"
],
"createdAt": "2024-01-01T09:00:00.00Z",
"description": "In today's video, I'll be showing you...",
"name": "Profile picture",
"data": "{\"type\":\"youtube\",\"youtubeId\":\"e6pbkJ37U\"}"
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Bad Request"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Unauthorized access"
}
Forbidden
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Forbidden access"
}
NotFound
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "A mandatory item was not found"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Internal Server Error"
}
Unexpected error
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "An unexpected error occured"
}
Loading...