Skip to main content

Event Overview

The Car Actually Placed webhook fires when a railcar is physically placed at a station or track in your network. It delivers equipment details, the placement location, loaded/empty status, and the associated work order (if any).
This webhook is triggered through ARMS workflow automation. Configure it in your workflow rules to notify external systems when cars arrive at specific locations.

Payload Schema


Field Reference

Top-level Fields

linked_resources.equipment

An array of equipment items being placed. Always an array, even for a single car.

linked_resources.event_station

The station or track where the equipment is being placed. null if no station is associated.

attributes


Example HTTP Request

This is the full HTTP request your endpoint receives:
The JSON body is canonically serialized (sorted keys, no extra whitespace) so the signature can be verified deterministically. See the Webhook Overview for verification instructions.

Setting Up This Webhook

1

Configure Workflow

In ARMS, create or edit a workflow rule that triggers on car placement events.
2

Add Webhook Effect

Add the Car Actually Placed Webhook effect to the workflow. Provide your endpoint URL.
3

Implement Your Endpoint

Build an HTTPS endpoint that receives the POST, verifies the signature, and processes the event.
4

Test

Trigger a test event and confirm your endpoint receives and verifies the payload correctly.

Webhook Overview

Signing, verification, public key, and shared HTTP headers.