POST v1/Businesses/AcordDescription

Upsert ACORD Description for Certificate Holder or Lienholder

Request Information

URI Parameters

None.

Body Parameters

ACORD Description

ACORDDescriptionDTO
NameDescriptionTypeAdditional information
BusinessID

The ID of the business

integer

None.

Description

Description

string

None.

Request Formats

application/json, text/json

Sample:
{
  "BusinessID": 1,
  "Description": "sample string 2"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ACORDDescriptionDTO'.

application/xml, text/xml

Sample:
<ACORDDescriptionDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Contacts">
  <BusinessID>1</BusinessID>
  <Description>sample string 2</Description>
</ACORDDescriptionDTO>

Response Information

Resource Description

ACORD Description

ActionResultDTOOfACORDDescriptionDTO
NameDescriptionTypeAdditional information
Result

ACORDDescriptionDTO

None.

CreatedBy

string

None.

EntityID

integer

None.

RowSource

string

None.

PolicyID

integer

None.

IsSuccess

Signifies whether action is successful

boolean

None.

ErrorCode

Error code

string

None.

ErrorMessage

Error message

string

None.

InfoMessage

Information message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Result": {
    "BusinessID": 1,
    "Description": "sample string 2"
  },
  "CreatedBy": "sample string 1",
  "EntityID": 2,
  "RowSource": "sample string 3",
  "PolicyID": 4,
  "IsSuccess": true,
  "ErrorCode": "sample string 6",
  "ErrorMessage": "sample string 7",
  "InfoMessage": "sample string 8"
}

application/xml, text/xml

Sample:
<ActionResultOfACORDDescriptionDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects">
  <ErrorCode>sample string 6</ErrorCode>
  <ErrorMessage>sample string 7</ErrorMessage>
  <InfoMessage>sample string 8</InfoMessage>
  <IsSuccess>true</IsSuccess>
  <CreatedBy>sample string 1</CreatedBy>
  <EntityID>2</EntityID>
  <PolicyID>4</PolicyID>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Contacts">
    <d2p1:BusinessID>1</d2p1:BusinessID>
    <d2p1:Description>sample string 2</d2p1:Description>
  </Result>
  <RowSource>sample string 3</RowSource>
</ActionResultOfACORDDescriptionDTO>