Skip to main content
PUT
/
api
/
v1
/
data
/
{uuid}
Update table metadata (name and description)
curl --request PUT \
  --url https://{subdomain}.mihu.ai/api/v1/data/{uuid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Updated Product Catalog",
  "description": "Updated description."
}
'
{
  "success": true,
  "message": "Table updated successfully",
  "data": {
    "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "description": "<string>",
    "type": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.mindhunters.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

UUID of the table

Body

application/json
name
string

New name for the table. At least one of name or description must be provided.

Example:

"Updated Product Catalog"

description
string | null

New description for the table.

Example:

"Updated description."

Response

Table updated successfully

success
boolean
Example:

true

message
string
Example:

"Table updated successfully"

data
object