Skip to main content
POST
/
api
/
v1
/
create-object
Create object
curl --request POST \
  --url https://voxworks.ai/api/v1/create-object \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "data": {},
  "type_name": "<string>",
  "type_id": "<string>",
  "parent_id": "<string>"
}
'
{
  "success": true,
  "object_id": "<string>",
  "object": {
    "id": "<string>",
    "name": "<string>",
    "type_id": "<string>",
    "parent_id": "<string>",
    "data": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.voxworks.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key from Voxworks, sent as Authorization: Bearer YOUR_API_KEY.

Body

application/json
name
string
required
Maximum string length: 255
data
object
type_name
string
type_id
string
parent_id
string

Response

Object created.

success
boolean
object_id
string
object
object