POST api/NominationService/GetSubmittedWeeklyNominations
Request Information
URI Parameters
None.
Body Parameters
GetSubmittedWeeklyNominationsRequest| Name | 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": "2025-10-23T03:56:13.1765322+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>2025-10-23T03:56:13.1765322+00:00</GasWeekStartDate> <SellerId>1</SellerId> </GetSubmittedWeeklyNominationsRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of WeeklyNominationDayQuantity| Name | 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": "2025-10-23T03:56:13.2390369+00:00",
"NominationInGj": 1.0,
"SellerComments": "sample string 2",
"FceCheck": true
},
{
"GasDay": "2025-10-23T03:56:13.2390369+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>2025-10-23T03:56:13.2390369+00:00</GasDay>
</WeeklyNominationDayQuantity>
<WeeklyNominationDayQuantity>
<FceCheck>true</FceCheck>
<NominationInGj>1</NominationInGj>
<SellerComments>sample string 2</SellerComments>
<GasDay>2025-10-23T03:56:13.2390369+00:00</GasDay>
</WeeklyNominationDayQuantity>
</ArrayOfWeeklyNominationDayQuantity>