Skip to main content
PUT
/
workspace
/
{workspace_id}
/
table
/
{table_id}
/
autocomplete
update workspace table's autocomplete
curl --request PUT \
  --url https://x8ki-letl-twmt.n7.xano.io/api:meta/workspace/{workspace_id}/table/{table_id}/autocomplete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "autocomplete": [
    {
      "name": "id"
    }
  ]
}'
{
  "id": "<string>",
  "autocomplete": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspace_id
integer
required
table_id
integer
required

Body

autocomplete
object[]

Response

Success!

id
string
autocomplete
string
I