"Arrived" Event - Pickup

📘

Here is the full example of the event that Radaro sends out when a driver taps on "Arrived" during a pickup.

Token in body

{
    "time": "2026-04-01T21:15:15.842304+11:00",
    "token": "MlfqEdN60b9fLOHEPdPGUQ",
    "topic": "job.pickup_arrived",
    "driver": {
        "full_name": "Peter Parker",
        "member_id": 55546934
    },
    "job_info": {
        "title": "Job: ID 154846469",
        "orders": [
            {
                "order_id": 122553647,
                "external_id": null
            },
            {
                "order_id": 118373859,
                "external_id": null
            }
        ],
        "status": "assigned",
        "title_2": "",
        "title_3": "",
        "order_id": 154846469,
        "external_id": null,
        "order_device": null,
        "pickup_after": null,
        "pickup_before": null,
        "is_concatenated_order": false,
        "pickup_geofence_entered": null,
        "time_inside_pickup_geofence": null
    },
    "location": "-37.865322,145.027478",
    "distance_to_pickup": 0
}

Token in headers

{
    "Authorization": "Token MlfqEdN60b9fLOHEPdPGUQ",
}

Body

{
    "time": "2026-04-01T21:15:15.842304+11:00",
    "topic": "job.pickup_arrived",
    "driver": {
        "full_name": "Peter Parker",
        "member_id": 55546934
    },
    "job_info": {
        "title": "Job: ID 154846469",
        "orders": [
            {
                "order_id": 122553647,
                "external_id": null
            },
            {
                "order_id": 118373859,
                "external_id": null
            }
        ],
        "status": "assigned",
        "title_2": "",
        "title_3": "",
        "order_id": 154846469,
        "external_id": null,
        "order_device": null,
        "pickup_after": null,
        "pickup_before": null,
        "is_concatenated_order": true,
        "pickup_geofence_entered": null,
        "time_inside_pickup_geofence": null
    },
    "location": "-37.865322,145.027478",
    "distance_to_pickup": 0
}