回収準備金セットの作成
以下のペイロードは、回収準備金セットの作成の例です。
reserveLineにより、単一エクスポージャーの源泉資金を相殺します。- エクスポージャーの ID は cc:SB1 です。
- コストタイプは
claimcostです。 - コストカテゴリは車体(
body)です。 - 回収金カテゴリはスクラップです。
- 支払備金通貨は米ドル(USD)です。
- transactionAmount は 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"
}
}
]
}
}
}