Vector Categories

API endpoints for managing vector categories

Retrieve all vector categories without pagination

get

Get all vector categories without pagination.

Authorizations
Query parameters
order_bystringOptional

Column to order results by (e.g., 'created_at')

Example: created_at
orderstring · enumOptional

Sorting order (asc or desc)

Example: descPossible values:
Responses
200

Successful response

application/json
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 vector category by ID

get

Get a specific vector category by ID.

Authorizations
Path parameters
idinteger · int64Required

ID of the vector category

Responses
200

Successful response

application/json
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 list of vectors categories

get

Get all vectors categories.

Authorizations
Query parameters
per_pageintegerOptional

Number of records per page (-1 for all records)

Example: 25
order_bystringOptional

Column to sort by

Example: created_at
orderstringOptional

Sort order (asc/desc)

Example: desc
Responses
200

Successful response

No content

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?