Carrier Issue Updated
v2 equivalent:
CARRIER_ISSUE_UPDATED(uses shared event envelope).
Augment POSTs this payload to your configured carrier-issue endpoint when a carrier issue (detention, lumper, TONU, breakdown, damage, shortage, overage, or other incident) is created or updated on a load. Clients must configure a CARRIER_ISSUE_UPDATED webhook subscription to receive these events.
A standardized carrier issue notification. Sent when the carrier-support agent creates or updates an issue (detention, lumper, TONU, breakdown, damage, shortage, overage, or other incident) on a load. Flat equivalent of the v2 CARRIER_ISSUE_UPDATED envelope — the same fields are sent at the top level rather than nested under data.
- Type: string | nullcarrier
Issue Id requiredCorrelation token for this carrier issue (Augment's internal incident record id). Echo it back on the callback to update the same incident in place. Null if not yet available.
- Type: stringdescriptionrequired
Full narrative description of the issue.
- Type: string enumissue
Type requiredThe category of carrier issue.
values- D
E T E N T I O N _ P I C K U P - D
E T E N T I O N _ D E L I V E R Y - L
U M P E R - T
O N U - L
A Y O V E R
- Type: stringload
Number requiredThe unique identifier for the load
- Type: string enumstatusrequired
Current lifecycle status of the issue.
values- O
P E N - R
E S O L V E D - C
A N C E L E D
- Type: integer | nullamount
Cents Monetary claim amount in USD cents (e.g. lumper fee, detention charge).
- Type: string | nullbrokerage
Load Internal Id Optional internal load ID in the TMS. Use loadNumber as the main ID. Will be null if not provided.
- Type: stringexternal
Id The incident id in your TMS, once you have reported it back via the callback. When present, treat this event as an update to that existing incident rather than a new one.
- Type: string | nullresolution
How the issue was resolved. Populated when status is RESOLVED.
- Type: integer | nullstop
Sequence Number 1-indexed position of the affected stop on the route.
- Type: string | null enumstop
Type Which stop type is affected, if applicable.
values- P
I C K U P - D
E L I V E R Y - null
- Type: integer | nullwait
Time Minutes Wait or detention duration in minutes.
- 200
Carrier issue update received successfully
{
"loadNumber": "",
"brokerageLoadInternalId": null,
"carrierIssueId": "01JCARRIERISSUERECORD00001",
"issueType": "DETENTION_PICKUP",
"status": "OPEN",
"stopType": "PICKUP",
"stopSequenceNumber": 1,
"amountCents": 15000,
"waitTimeMinutes": 180,
"description": "Carrier reported 3-hour wait at shipper. Appointment was 08:00, arrived 07:45, still not loaded as of 11:00.",
"resolution": null,
"externalId": "TMS-INC-30275"
}