POST api/AdminData/SaveQuotaYear?manufacturerID={manufacturerID}&year={year}&userID={userID}&stateID={stateID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| manufacturerID | integer |
Required |
|
| year | integer |
Required |
|
| userID | integer |
Required |
|
| stateID | integer |
Required |
Body Parameters
YearAround| Name | Description | Type | Additional information |
|---|---|---|---|
| PrimaryIndustry | PrimaryIndustry |
None. |
|
| Jan | decimal number |
None. |
|
| Feb | decimal number |
None. |
|
| Mar | decimal number |
None. |
|
| Apr | decimal number |
None. |
|
| May | decimal number |
None. |
|
| Jun | decimal number |
None. |
|
| Jul | decimal number |
None. |
|
| Aug | decimal number |
None. |
|
| Sep | decimal number |
None. |
|
| Oct | decimal number |
None. |
|
| Nov | decimal number |
None. |
|
| Dec | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"primaryIndustry": {
"primaryIndustryID": 1,
"primaryIndustryName": "sample string 2",
"primaryIndustryIcon": "sample string 3"
},
"jan": 1.0,
"feb": 2.0,
"mar": 3.0,
"apr": 4.0,
"may": 5.0,
"jun": 6.0,
"jul": 7.0,
"aug": 8.0,
"sep": 9.0,
"oct": 10.0,
"nov": 11.0,
"dec": 12.0
}
application/xml, text/xml
Sample:
<YearAround xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameTimeBAL.ViewModels">
<Apr>4</Apr>
<Aug>8</Aug>
<Dec>12</Dec>
<Feb>2</Feb>
<Jan>1</Jan>
<Jul>7</Jul>
<Jun>6</Jun>
<Mar>3</Mar>
<May>5</May>
<Nov>11</Nov>
<Oct>10</Oct>
<PrimaryIndustry>
<PrimaryIndustryID>1</PrimaryIndustryID>
<PrimaryIndustryIcon>sample string 3</PrimaryIndustryIcon>
<PrimaryIndustryName>sample string 2</PrimaryIndustryName>
</PrimaryIndustry>
<Sep>9</Sep>
</YearAround>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.