POST api/docgen/CreateSettlementDoc

Request Information

URI Parameters

None.

Body Parameters

SettlementDto
NameDescriptionTypeAdditional information
Last7Nj

string

None.

OfferingParty

string

None.

ReceivingParty

string

None.

Nj

string

None.

ClaimNumber

string

None.

ClaimAmount

decimal number

None.

SettledPercentage

decimal number

None.

SettledDollars

decimal number

None.

SettledAttyFees

decimal number

None.

SettledCosts

decimal number

None.

SettledInterest

decimal number

None.

InterestText

string

None.

TotalSettled

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "Last7Nj": "sample string 1",
  "OfferingParty": "sample string 2",
  "ReceivingParty": "sample string 3",
  "Nj": "sample string 4",
  "ClaimNumber": "sample string 5",
  "ClaimAmount": 6.0,
  "SettledPercentage": 7.0,
  "SettledDollars": 8.0,
  "SettledAttyFees": 9.0,
  "SettledCosts": 10.0,
  "SettledInterest": 11.0,
  "InterestText": "sample string 12",
  "TotalSettled": 13.0
}

application/xml, text/xml

Sample:
<SettlementDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CaseManagement.DocGen.Models.NoFault">
  <ClaimAmount>6</ClaimAmount>
  <ClaimNumber>sample string 5</ClaimNumber>
  <InterestText>sample string 12</InterestText>
  <Last7Nj>sample string 1</Last7Nj>
  <Nj>sample string 4</Nj>
  <OfferingParty>sample string 2</OfferingParty>
  <ReceivingParty>sample string 3</ReceivingParty>
  <SettledAttyFees>9</SettledAttyFees>
  <SettledCosts>10</SettledCosts>
  <SettledDollars>8</SettledDollars>
  <SettledInterest>11</SettledInterest>
  <SettledPercentage>7</SettledPercentage>
  <TotalSettled>13</TotalSettled>
</SettlementDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>