Available Actions
trackidentifyrevenueexport
Input Schema
{
"type": "object",
"required": [
"event_type",
"user_id"
],
"properties": {
"user_id": {
"type": "string"
},
"event_type": {
"type": "string"
},
"event_properties": {
"type": "object"
}
}
}Output Schema
{
"type": "object",
"properties": {
"code": {
"type": "number"
},
"events_ingested": {
"type": "number"
}
}
}Quick Start
API Endpoint
POST /api/execute/amplitudecURL Example
curl -X POST \
https://api.nulayers.com/execute/amplitude \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "track"}'