Creating a recovery reserve set

The following payload is an example of creating a recovery reserve set.

  • The reserveLine offsets money coming from a single exposure:
    • The exposure’s ID is cc:SB1
  • The cost type is claimcost.
  • The cost category is Auto Body (body).
  • The recovery category is salvage.
  • The reserving currency is USD.
    • The transactionAmount is for 5000.00.

POST /claims/cc:76b/recovery-reserve-sets

{
  "data": {
    "attributes": {
      "recoveryReservesToWrite": [
        {
          "reserveLine": {
            "costCategory": {
              "code": "body"
            },
            "costType": {
              "code": "claimCost"
            },
            "exposure": {
                    "id": "cc:SB1"
            },
            "recoveryCategory": {
              "code": "salvage"
            },
            "reservingCurrency": {
              "code": "usd"
            }
          },
          "lineItems": [
            {
              "transactionAmount": {
                "amount": "5000.00",
                "currency": "usd"
              }
            }
          ],
          "currency": {
            "code": "usd"
          }
        }
      ]
    }
  }
}