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_at
orderstring · enumOptionalExample:
Sorting order (asc or desc)
desc
Possible values: Responses
200
Successful response
application/json
401
Unauthorized
500
Internal server error
get
GET /api/open-api/v1/vectors-categories/list HTTP/1.1
Host: app.simplio3d.com
Authorization: Bearer JWT
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
GET /api/open-api/v1/vectors-categories/{id} HTTP/1.1
Host: app.simplio3d.com
Authorization: Bearer JWT
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)
25
order_bystringOptionalExample:
Column to sort by
created_at
orderstringOptionalExample:
Sort order (asc/desc)
desc
Responses
200
Successful response
No content
401
Unauthorized
500
Internal Server Error
get
GET /api/open-api/v1/vectors-categories HTTP/1.1
Host: app.simplio3d.com
Authorization: Bearer JWT
Accept: */*
No content
Last updated
Was this helpful?