curl --request POST \
--url https://api.finseo.ai/v1/projects/PROJECT_ID/attribution/bulk \
--header "Authorization: Bearer $FINSEO_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"responses": [
{
"channelId": "ai_search",
"respondentEmail": "jane@company.com",
"dealValue": 12000
},
{
"channelId": "google_search",
"respondentEmail": "john@corp.com",
"dealValue": 8500
},
{
"channelId": "social_media",
"respondentEmail": "alex@startup.io"
}
]
}'
{
"data": {
"imported": 3
}
}
Attribution
Crear atribuciones en bloque
POST
/
v1
/
projects
/
{projectId}
/
attribution
/
bulk
curl --request POST \
--url https://api.finseo.ai/v1/projects/PROJECT_ID/attribution/bulk \
--header "Authorization: Bearer $FINSEO_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"responses": [
{
"channelId": "ai_search",
"respondentEmail": "jane@company.com",
"dealValue": 12000
},
{
"channelId": "google_search",
"respondentEmail": "john@corp.com",
"dealValue": 8500
},
{
"channelId": "social_media",
"respondentEmail": "alex@startup.io"
}
]
}'
{
"data": {
"imported": 3
}
}
Importa hasta 1000 respuestas de atribución de una sola vez. Úsalo para migrar datos históricos desde tu CRM o herramienta de analítica.
Requiere el Scope
write en tu API Key.
string
requerido
El ID del proyecto.
array
requerido
Array de respuestas de atribución (máx. 1000). Cada elemento requiere al menos
channelId.curl --request POST \
--url https://api.finseo.ai/v1/projects/PROJECT_ID/attribution/bulk \
--header "Authorization: Bearer $FINSEO_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"responses": [
{
"channelId": "ai_search",
"respondentEmail": "jane@company.com",
"dealValue": 12000
},
{
"channelId": "google_search",
"respondentEmail": "john@corp.com",
"dealValue": 8500
},
{
"channelId": "social_media",
"respondentEmail": "alex@startup.io"
}
]
}'
{
"data": {
"imported": 3
}
}