Skip to main content
GET
/
api
/
v1
/
object-types
/
{object_type_id}
Get object type by ID
curl --request GET \
  --url https://voxworks.ai/api/v1/object-types/{object_type_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "object_type": {
    "id": "<string>",
    "type_name": "<string>",
    "display_name": "<string>",
    "description": "<string>",
    "schema": {},
    "unique_by_contact": true
  }
}

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.

Path Parameters

object_type_id
string
required

Response

Object type returned.

success
boolean
object_type
object