POST api/MeetingInterview/AddOAMInterviewLogs

Request Information

URI Parameters

None.

Body Parameters

OAMInterviewLogsModel
NameDescriptionTypeAdditional information
SkuId

integer

None.

CustomerId

integer

None.

OmnibizPurchase

integer

None.

StockQuantity

integer

None.

StockUnit

string

None.

ModifiedBy

integer

None.

ModifiedDate

date

None.

OmnibizPrice

decimal number

None.

UpdatedPrice

decimal number

None.

Footfall

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SkuId": 1,
  "CustomerId": 2,
  "OmnibizPurchase": 3,
  "StockQuantity": 4,
  "StockUnit": "sample string 5",
  "ModifiedBy": 6,
  "ModifiedDate": "2024-09-19T18:28:50.3222927+01:00",
  "OmnibizPrice": 8.0,
  "UpdatedPrice": 9.0,
  "Footfall": "sample string 10"
}

application/xml, text/xml

Sample:
<OAMInterviewLogsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model">
  <CustomerId>2</CustomerId>
  <Footfall>sample string 10</Footfall>
  <ModifiedBy>6</ModifiedBy>
  <ModifiedDate>2024-09-19T18:28:50.3222927+01:00</ModifiedDate>
  <OmnibizPrice>8</OmnibizPrice>
  <OmnibizPurchase>3</OmnibizPurchase>
  <SkuId>1</SkuId>
  <StockQuantity>4</StockQuantity>
  <StockUnit>sample string 5</StockUnit>
  <UpdatedPrice>9</UpdatedPrice>
</OAMInterviewLogsModel>

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 'OAMInterviewLogsModel'.

Response Information

Resource Description

VCAPIResponse
NameDescriptionTypeAdditional information
Version

string

None.

dateTime

string

None.

StatusCode

integer

None.

ErrorMessage

string

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Version": "1.0.0",
  "dateTime": "2024/09/19 18:28:50",
  "StatusCode": 1,
  "ErrorMessage": "sample string 2",
  "Result": {}
}

application/xml, text/xml

Sample:
<VCAPIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model">
  <ErrorMessage>sample string 2</ErrorMessage>
  <Result />
  <StatusCode>1</StatusCode>
</VCAPIResponse>