POST api/app/VendorConfiguration/UpdateCompleteScheduleSetting

Request Information

URI Parameters

None.

Body Parameters

CompleteScheduleSettingBindingModel
NameDescriptionTypeAdditional information
BuilderId

integer

None.

ERPCCId

integer

None.

CompleteSchedule

CompleteScheduleViewSettings

None.

Request Formats

application/json, text/json

Sample:
{
  "BuilderId": 1,
  "ERPCCId": 2,
  "CompleteSchedule": {
    "Id": 1,
    "AllowSuppSelection": true,
    "AllowOLSCMChecklist": true,
    "AllowLotAddressCalendar": true
  }
}

application/xml, text/xml

Sample:
<CompleteScheduleSettingBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Central.API.Common.BindingModel.Vendor.Configurations">
  <RequestId xmlns="http://schemas.datacontract.org/2004/07/Central.API.Enterprise.BindingModels">c978657c-10f9-42ba-8776-a783bb23b66a</RequestId>
  <BuilderId>1</BuilderId>
  <CompleteSchedule xmlns:d2p1="http://schemas.datacontract.org/2004/07/Central.API.Common.DataProvider.Model.Vendor.Configuration">
    <d2p1:AllowLotAddressCalendar>true</d2p1:AllowLotAddressCalendar>
    <d2p1:AllowOLSCMChecklist>true</d2p1:AllowOLSCMChecklist>
    <d2p1:AllowSuppSelection>true</d2p1:AllowSuppSelection>
    <d2p1:Id>1</d2p1:Id>
  </CompleteSchedule>
  <ERPCCId>2</ERPCCId>
</CompleteScheduleSettingBindingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseModelOfObject
NameDescriptionTypeAdditional information
ResponseTime

date

None.

ResponseCode

ResponseCode

None.

ResponseMessage

string

None.

ResponsePermission

string

None.

DataSet

Object

None.

_internalResponseMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "_internalResponseMessage": "sample string 1",
  "ResponseTime": "2026-04-30T09:59:44.0054279+00:00",
  "ResponseCode": 0,
  "ResponseMessage": "sample string 2",
  "ResponsePermission": "sample string 3",
  "DataSet": {}
}

application/xml, text/xml

Sample:
<ResponseModelOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Central.API.Enterprise.BindingModels">
  <DataSet />
  <ResponseCode>NoDataFound</ResponseCode>
  <ResponseMessage>sample string 2</ResponseMessage>
  <ResponsePermission>sample string 3</ResponsePermission>
  <ResponseTime>2026-04-30T09:59:44.0054279+00:00</ResponseTime>
  <_internalResponseMessage>sample string 1</_internalResponseMessage>
</ResponseModelOfanyType>