POST api/NominationService/GetSubmittedWeeklyNominations
Request Information
URI Parameters
None.
Body Parameters
GetSubmittedWeeklyNominationsRequestName | Description | Type | Additional information |
---|---|---|---|
SellerId | integer |
None. |
|
DeliveryPointId | integer |
None. |
|
GasWeekStartDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "SellerId": 1, "DeliveryPointId": 2, "GasWeekStartDate": "2024-10-30T14:21:51.4951768+00:00" }
application/xml, text/xml
Sample:
<GetSubmittedWeeklyNominationsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Chevron.Abu.Whs.Portals.Domgas.Dto.Nomination"> <DeliveryPointId>2</DeliveryPointId> <GasWeekStartDate>2024-10-30T14:21:51.4951768+00:00</GasWeekStartDate> <SellerId>1</SellerId> </GetSubmittedWeeklyNominationsRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of WeeklyNominationDayQuantityName | Description | Type | Additional information |
---|---|---|---|
GasDay | date |
None. |
|
NominationInGj | decimal number |
None. |
|
SellerComments | string |
None. |
|
FceCheck | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "GasDay": "2024-10-30T14:21:51.515174+00:00", "NominationInGj": 1.0, "SellerComments": "sample string 2", "FceCheck": true }, { "GasDay": "2024-10-30T14:21:51.515174+00:00", "NominationInGj": 1.0, "SellerComments": "sample string 2", "FceCheck": true } ]
application/xml, text/xml
Sample:
<ArrayOfWeeklyNominationDayQuantity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Chevron.Abu.Whs.Portals.Domgas.Dto.Nomination"> <WeeklyNominationDayQuantity> <FceCheck>true</FceCheck> <NominationInGj>1</NominationInGj> <SellerComments>sample string 2</SellerComments> <GasDay>2024-10-30T14:21:51.515174+00:00</GasDay> </WeeklyNominationDayQuantity> <WeeklyNominationDayQuantity> <FceCheck>true</FceCheck> <NominationInGj>1</NominationInGj> <SellerComments>sample string 2</SellerComments> <GasDay>2024-10-30T14:21:51.515174+00:00</GasDay> </WeeklyNominationDayQuantity> </ArrayOfWeeklyNominationDayQuantity>