Skip to main content
POST
/
api
/
cdp
/
data
/
{table_name}
Ingestão em Lote (Batch Insert)
curl --request POST \
  --url https://cdp.analytics.synapside.com/api/cdp/data/{table_name} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "email": "cliente1@exemplo.com",
    "idade": 28,
    "ativo": true
  },
  {
    "email": "cliente2@exemplo.com",
    "idade": 35,
    "ativo": false
  }
]
'
{
  "success": true,
  "inserted_rows": 123,
  "message": "<string>"
}

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
Example:
[
{
"email": "cliente1@exemplo.com",
"idade": 28,
"ativo": true
},
{
"email": "cliente2@exemplo.com",
"idade": 35,
"ativo": false
}
]

Response

Sucesso na inserção.

success
boolean
inserted_rows
integer
message
string