parcelvoy / platform

Parcelvoy: Open source multi-channel marketing automation platform. Send data-driven emails, sms, push notifications and more!
https://parcelvoy.com
Other
209 stars 31 forks source link

Journey does not trigger on user_created event #422

Closed mattes3 closed 5 months ago

mattes3 commented 5 months ago

I created a test journey that has an entrance for the user_created event:

CleanShot 2024-04-01 at 11 35 29@2x

When I POST on /identify, a new user named John Smith is created:

curl --request POST \
    --url 'https://email-automation.bohlenlabs.com/api/client/identify' \
    --header 'Authorization: Bearer pk_...' \
    --header 'Content-Type: application/json' \
    --data '{
        "external_id": "5",
        "email": "some@example.com",
        "timezone": "America/Chicago",
        "locale": "en",
        "data": {
            "first_name": "John",
            "last_name": "Smith",
            "has_completed_onboarding": true
        }
    }'

But when I open the user details of John Smith, the journeys tab is empty:

CleanShot 2024-04-01 at 11 38 15@2x

What can I do here?