Get all global assets
GET/assets/global
Get all global assets
Request
Query Parameters
The tags of the assets to grab
The type of the assets to grab
Search by start date
Search by end date
Possible values: >= 1
Default value: 1
Specify the page number for pagination (default is 1).
Default value: 10
Specify the number of results per page (default is 10, 0 gets all results).
Possible values: [createdAt
, name
]
Field to order the results by (e.g., 'createdAt', 'ownerId'). Default is 'createdAt'.
Possible values: [asc
, desc
]
Default value: desc
'asc' for ascending or 'desc' for descending order. Default is 'desc'.
Responses
- 200
- 403
- 404
- 500
- default
List of global assets
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
Unique identifier for Asset
Time representation of Asset creation
Asset URL
Unique identifier for Schema
Asset description
Asset tags
Asset data
Unique identifier for Project
Asset name
[
{
"id": "a7qDzJ7XD",
"type": "tutorial",
"createdAt": "2024-01-01T09:00:00.00Z",
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"schemaId": "s2S7KuFGc",
"description": "In today's video, I'll be showing you...",
"tags": [
"adobeillustrator",
"border",
"imageborder"
],
"data": "{\"type\":\"youtube\",\"youtubeId\":\"e6pbkJ37U\"}",
"projectId": "p2Duhf5N6",
"name": "How to Add a Border to an Image"
}
]
[
{
"description": "In today's video, I'll be showing you...",
"schemaId": "null",
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"createdAt": "2024-01-01T09:00:00.00Z",
"type": "tutorial",
"id": "a1g8TGDav",
"name": "How to Add a Border to an Image",
"projectId": "null",
"data": "{\"type\":\"youtube\",\"youtubeId\":\"e6pbkJ37U\"}",
"tags": [
"adobeillustrator",
"border",
"imageborder"
]
},
{
"tags": [
"3D",
"3Ddesign"
],
"data": "{\"mesh\":{\"vertices\":[[-1.0,1.0,0.0],[1.0,1.0,0.0],[1.0,-1.0,0.0],[-1.0,-1.0,0.0]],\"faces..",
"name": "Animated Cartoon Character",
"projectId": "null",
"createdAt": "2024-01-01T09:00:00.00Z",
"url": "https://example.com/assets/cartoon-character.fbx",
"schemaId": "null",
"description": "A fully rigged and textured 3D model of a cartoon character ready for animation",
"id": "a3nH4gRjo",
"type": "3D character"
}
]
Forbidden
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "Forbidden access"
}
NotFound
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "A mandatory item was not found"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "Internal Server Error"
}
Unexpected error
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "An unexpected error occured"
}