GET request/customer/bespoke/objections/{bespokecontractid}

Get bespoke objections

Request Information

URI Parameters

NameDescriptionTypeAdditional information
bespokecontractid

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of BespokeObjections
NameDescriptionTypeAdditional information
BespokeContractId

integer

None.

BespokeResultId

integer

None.

ContractId

integer

None.

JourneyStatusRefId

integer

None.

ObjectionId

integer

None.

ObjectionNotes

string

None.

ObjectionTypeId

byte

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "objectionId": 1,
    "objectionTypeId": 64,
    "journeyStatusRefId": 1,
    "contractId": 1,
    "bespokeContractId": 1,
    "bespokeResultId": 1,
    "objectionNotes": "sample string 3"
  },
  {
    "objectionId": 1,
    "objectionTypeId": 64,
    "journeyStatusRefId": 1,
    "contractId": 1,
    "bespokeContractId": 1,
    "bespokeResultId": 1,
    "objectionNotes": "sample string 3"
  }
]

text/html

Sample:
[{"objectionId":1,"objectionTypeId":64,"journeyStatusRefId":1,"contractId":1,"bespokeContractId":1,"bespokeResultId":1,"objectionNotes":"sample string 3"},{"objectionId":1,"objectionTypeId":64,"journeyStatusRefId":1,"contractId":1,"bespokeContractId":1,"bespokeResultId":1,"objectionNotes":"sample string 3"}]

application/xml, text/xml

Sample:
<ArrayOfBespokeObjections xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyUtilityGeniusForBusiness.Api.Models.QuoteDto">
  <BespokeObjections>
    <BespokeContractId>1</BespokeContractId>
    <BespokeResultId>1</BespokeResultId>
    <ContractId>1</ContractId>
    <JourneyStatusRefId>1</JourneyStatusRefId>
    <ObjectionId>1</ObjectionId>
    <ObjectionNotes>sample string 3</ObjectionNotes>
    <ObjectionTypeId>64</ObjectionTypeId>
  </BespokeObjections>
  <BespokeObjections>
    <BespokeContractId>1</BespokeContractId>
    <BespokeResultId>1</BespokeResultId>
    <ContractId>1</ContractId>
    <JourneyStatusRefId>1</JourneyStatusRefId>
    <ObjectionId>1</ObjectionId>
    <ObjectionNotes>sample string 3</ObjectionNotes>
    <ObjectionTypeId>64</ObjectionTypeId>
  </BespokeObjections>
</ArrayOfBespokeObjections>