Vector Categories
API endpoints for managing vector categories
Get all vector categories without pagination.
Authorizations
Query parameters
order_bystringOptionalExample:
Column to order results by (e.g., 'created_at')
created_atorderstring · enumOptionalExample:
Sorting order (asc or desc)
descPossible values: Responses
200
Successful response
application/json
401
Unauthorized
500
Internal server error
get
/api/open-api/v1/vectors-categories/listGET /api/open-api/v1/vectors-categories/list HTTP/1.1
Host: app.simplio3d.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": 1,
"title": "Wood Vectors",
"description": "Collection of wood vectors",
"created_at": "2024-02-21T12:34:56Z",
"updated_at": "2024-02-21T12:34:56Z",
"created_by": "John Doe"
}
]Get a specific vector category by ID.
Authorizations
Path parameters
idinteger · int64Required
ID of the vector category
Responses
200
Successful response
application/json
401
Unauthorized
404
Vector category not found
get
/api/open-api/v1/vectors-categories/{id}GET /api/open-api/v1/vectors-categories/{id} HTTP/1.1
Host: app.simplio3d.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": 1,
"title": "Wood Vectors",
"description": "Collection of wood vectors",
"created_at": "2024-02-21T12:34:56Z",
"updated_at": "2024-02-21T12:34:56Z",
"created_by": "John Doe"
}Get all vectors categories.
Authorizations
Query parameters
per_pageintegerOptionalExample:
Number of records per page (-1 for all records)
25order_bystringOptionalExample:
Column to sort by
created_atorderstringOptionalExample:
Sort order (asc/desc)
descResponses
200
Successful response
No content
401
Unauthorized
500
Internal Server Error
get
/api/open-api/v1/vectors-categoriesGET /api/open-api/v1/vectors-categories HTTP/1.1
Host: app.simplio3d.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Last updated
Was this helpful?