POST api/NominationService/SubmitWeeklyNomination
Request Information
URI Parameters
None.
Body Parameters
SubmittedWeeklyNomination| Name | Description | Type | Additional information |
|---|---|---|---|
| GasWeek | date |
None. |
|
| SellerId | integer |
None. |
|
| DeliveryPointId | integer |
None. |
|
| SubmittedWeeklyNominationDays | Collection of SubmittedWeeklyNominationDay |
None. |
Request Formats
application/json, text/json
Sample:
{
"GasWeek": "2025-10-22T17:40:02.9712073+00:00",
"SellerId": 2,
"DeliveryPointId": 3,
"SubmittedWeeklyNominationDays": [
{
"Day": "2025-10-22T17:40:02.9712073+00:00",
"Nomination": {
"NominationInGj": 1.0,
"SellerComments": "sample string 1",
"FceCheck": true
}
},
{
"Day": "2025-10-22T17:40:02.9712073+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>2025-10-22T17:40:02.9712073+00:00</GasWeek>
<SellerId>2</SellerId>
<SubmittedWeeklyNominationDays>
<SubmittedWeeklyNominationDay>
<Day>2025-10-22T17:40:02.9712073+00:00</Day>
<Nomination>
<FceCheck>true</FceCheck>
<NominationInGj>1</NominationInGj>
<SellerComments>sample string 1</SellerComments>
</Nomination>
</SubmittedWeeklyNominationDay>
<SubmittedWeeklyNominationDay>
<Day>2025-10-22T17:40:02.9712073+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.