Skip to main content
POST
/
api
/
cdp
/
schema
/
table
/
{table_name}
/
column
Adicionar uma Coluna
curl --request POST \
  --url https://cdp.analytics.synapside.com/api/cdp/schema/table/{table_name}/column \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "telefone",
  "type": "TEXT",
  "comment": "Número de telefone com código de área."
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.analytics.synapside.com/llms.txt

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

Authorizations

Authorization
string
header
required

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

Path Parameters

table_name
string
required

Body

application/json
name
string
required
Example:

"telefone"

type
enum<string>
required
Available options:
TEXT,
INTEGER,
FLOAT,
BOOLEAN,
TIMESTAMP,
JSONB
Example:

"TEXT"

comment
string
Example:

"Número de telefone com código de área."

Response

Coluna adicionada com sucesso.