Report the external incident id for a carrier issue
After you receive a CARRIER_ISSUE_UPDATED webhook and create the incident in your own TMS, call this endpoint with the carrierIssueId from that webhook and your incident id (externalId). Augment stores the correlation so subsequent CARRIER_ISSUE_UPDATED events for the same issue include your externalId — letting you update the existing incident in place instead of creating a duplicate.
The call is idempotent: sending it again for the same carrierIssueId just updates the stored externalId. It is optional — if you never call it, events keep arriving without an externalId and nothing else changes.
Correlates a carrier issue from a CARRIER_ISSUE_UPDATED webhook with the matching incident id in your TMS.
- Type: stringcarrier
Issue Id requiredThe correlation token from the CARRIER_ISSUE_UPDATED webhook payload.
- Type: stringexternal
Id requiredThe incident id in your TMS.
- 204
External reference recorded
- 422
Invalid payload
curl https://api.prod.goaugment.com/v2/carrier-issues/external-ref \
--request POST \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic username:password' \
--data '{
"carrierIssueId": "01JCARRIERISSUERECORD00001",
"externalId": "TMS-INC-30275"
}'