POST api/NominationService/SubmitWeeklyNomination

Request Information

URI Parameters

None.

Body Parameters

SubmittedWeeklyNomination
NameDescriptionTypeAdditional information
GasWeek

date

None.

SellerId

integer

None.

DeliveryPointId

integer

None.

SubmittedWeeklyNominationDays

Collection of SubmittedWeeklyNominationDay

None.

Request Formats

application/json, text/json

Sample:
{
  "GasWeek": "2024-09-13T12:28:44.8795539+00:00",
  "SellerId": 2,
  "DeliveryPointId": 3,
  "SubmittedWeeklyNominationDays": [
    {
      "Day": "2024-09-13T12:28:44.8956781+00:00",
      "Nomination": {
        "NominationInGj": 1.0,
        "SellerComments": "sample string 1",
        "FceCheck": true
      }
    },
    {
      "Day": "2024-09-13T12:28:44.8956781+00:00",
      "Nomination": {
        "NominationInGj": 1.0,
        "SellerComments": "sample string 1",
        "FceCheck": true
      }
    }
  ]
}

application/xml, text/xml

Sample:
<SubmittedWeeklyNomination xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Chevron.Abu.Whs.Portals.Domgas.Dto.Nomination">
  <DeliveryPointId>3</DeliveryPointId>
  <GasWeek>2024-09-13T12:28:44.8795539+00:00</GasWeek>
  <SellerId>2</SellerId>
  <SubmittedWeeklyNominationDays>
    <SubmittedWeeklyNominationDay>
      <Day>2024-09-13T12:28:44.8956781+00:00</Day>
      <Nomination>
        <FceCheck>true</FceCheck>
        <NominationInGj>1</NominationInGj>
        <SellerComments>sample string 1</SellerComments>
      </Nomination>
    </SubmittedWeeklyNominationDay>
    <SubmittedWeeklyNominationDay>
      <Day>2024-09-13T12:28:44.8956781+00:00</Day>
      <Nomination>
        <FceCheck>true</FceCheck>
        <NominationInGj>1</NominationInGj>
        <SellerComments>sample string 1</SellerComments>
      </Nomination>
    </SubmittedWeeklyNominationDay>
  </SubmittedWeeklyNominationDays>
</SubmittedWeeklyNomination>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.