Transware API users can use this API to get the claim status and last updated date for a specific claim in Transware’s Loss & Damage Claims module.
Note: this API will only return results that the user has access to, as if they were logged into the Transware UI.
| HTTP Method | URL | Authentication Type |
| Get | /api/v1/claims/claimstatus | Bearer Token |
Request Parameters
| Name | Type | Required | Description |
| Claimnumber | String | Required | The claim number you want to request the current status of. Values should be passed like “C1234” |
Response Parameters
| Name | Type | Description |
| claimWorkflowMilestone | String | The current workflow milestone for the claim. The specific values returned here will vary by the values configured for a client, but typically will include values like “Open” or “Closed” |
| claimWorkflowStatus | String | The current workflow status for the claim. The specific values returned here will vary by the values configured for a client, but typically will include values like “Open”, “Filed With Carrier”, or “Settlement Negotiation” |
| lastUpdatedDate | String | The date that the claim, workflow, notes, or documentation was last updated by any user. Values formatted like mm/dd/yyyy |
Sample Request
https://transware.vtm.com/api/v1/claims/claimstatus?claimnumber=C1234
Sample Response
{
"result": [
{
"claimWorkflowMilestone": "Open",
"claimWorkflowStatus": "Filed With Carrier",
"lastUpdatedDate": "10/09/2025"
}
]
}
