After submitting a claim, you may need to retrieve the claimNumber assigned to it. This claim number is essential for tracking and managing the claim throughout its lifecycle. The claim number can be found in the response body of the GET transaction request.
Follow these steps to retrieve a claim number:
GET
Request:GET
request to the /transactions
endpoint with the necessary from
and to
date parameters to filter the transactions.claimNumber
in the transaction details.GET {{collection_api_base_url}}/v1/transactions?from=2024-05-22&to=2024-05-23
{
"sortNumber": 0,
"id": "3387532a-0e22-49a2-bb5b-ad92abf21fb0",
"type": "CONFIRMATION",
"customerNumber": "K1798010996",
"claimNumber": "951104528",
"confirmation": {
"date": "2023-01-12",
"type": "INVOICE",
"number": "I87999387",
"contractNumber": "V113951839",
"amount": 43.76,
"currency": "EUR",
"additionalProperties": {}
}
}
Do you find this page helpful?