PUT api/admin/{userId}/projects/{projectId}
Put (Update) information for project by projectId
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| projectId | integer |
Required |
|
| userId | string |
Required |
Body Parameters
CreateProjectModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
Required |
|
| ReferenceOnSite | string |
None. |
|
| NumOfReferenceOnKey | integer |
None. |
|
| comment | string |
None. |
|
| budgetOfProject | integer |
Required |
|
| moz | integer |
None. |
|
| alexa | integer |
None. |
|
| linkpad | integer |
None. |
|
| isMoz | boolean |
None. |
|
| isAlexa | boolean |
None. |
|
| isLinkpad | boolean |
None. |
|
| ThemeOfSite | string |
None. |
|
| linksWithAnchor | boolean |
None. |
|
| linksWithAnchorCount | integer |
None. |
|
| linksWithoutAnchor | boolean |
None. |
|
| linksWithoutAnchorCount | integer |
None. |
|
| addManual | boolean |
None. |
|
| leveling | boolean |
None. |
|
| levelingCount | integer |
None. |
|
| levelingCountPerDay | integer |
None. |
|
| DateOfFinish | date |
None. |
|
| AutomaticPayments | boolean |
None. |
|
| IsGoogle | boolean |
None. |
|
| GoogleTopCheck | integer |
None. |
|
| GoogleCountryCheck | string |
None. |
|
| IsYandex | boolean |
None. |
|
| YandexTopCheck | integer |
None. |
|
| YandexCountryCheck | string |
None. |
|
| YandexCityCheck | string |
None. |
|
| PriceForCommentWithAnchor | decimal number |
None. |
|
| PriceForEmptyComment | decimal number |
None. |
|
| PriceForCommentWithoutAnchor | decimal number |
None. |
|
| PriceForFastTask | decimal number |
None. |
|
| perDomain | integer |
None. |
|
| refencesCountDayLimit | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"name": "sample string 1",
"referenceOnSite": "sample string 2",
"numOfReferenceOnKey": 3,
"comment": "sample string 4",
"budgetOfProject": 5,
"moz": 6,
"alexa": 7,
"linkpad": 8,
"isMoz": true,
"isAlexa": true,
"isLinkpad": true,
"themeOfSite": "sample string 12",
"linksWithAnchor": true,
"linksWithAnchorCount": 1,
"linksWithoutAnchor": true,
"linksWithoutAnchorCount": 1,
"addManual": true,
"leveling": true,
"levelingCount": 1,
"levelingCountPerDay": 1,
"dateOfFinish": "2026-02-05T00:11:25.9871087+00:00",
"automaticPayments": true,
"isGoogle": true,
"googleTopCheck": 20,
"googleCountryCheck": "sample string 21",
"isYandex": true,
"yandexTopCheck": 23,
"yandexCountryCheck": "sample string 24",
"yandexCityCheck": "sample string 25",
"priceForCommentWithAnchor": 26.0,
"priceForEmptyComment": 27.0,
"priceForCommentWithoutAnchor": 28.0,
"priceForFastTask": 29.0,
"perDomain": 30,
"refencesCountDayLimit": 31
}
application/xml, text/xml
Sample:
<CreateProjectModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CraudWezom_v1.Models"> <AutomaticPayments>true</AutomaticPayments> <DateOfFinish>2026-02-05T00:11:25.9871087+00:00</DateOfFinish> <GoogleCountryCheck>sample string 21</GoogleCountryCheck> <GoogleTopCheck>20</GoogleTopCheck> <IsGoogle>true</IsGoogle> <IsYandex>true</IsYandex> <Name>sample string 1</Name> <NumOfReferenceOnKey>3</NumOfReferenceOnKey> <PriceForCommentWithAnchor>26</PriceForCommentWithAnchor> <PriceForCommentWithoutAnchor>28</PriceForCommentWithoutAnchor> <PriceForEmptyComment>27</PriceForEmptyComment> <PriceForFastTask>29</PriceForFastTask> <ReferenceOnSite>sample string 2</ReferenceOnSite> <ThemeOfSite>sample string 12</ThemeOfSite> <YandexCityCheck>sample string 25</YandexCityCheck> <YandexCountryCheck>sample string 24</YandexCountryCheck> <YandexTopCheck>23</YandexTopCheck> <addManual>true</addManual> <alexa>7</alexa> <budgetOfProject>5</budgetOfProject> <comment>sample string 4</comment> <isAlexa>true</isAlexa> <isLinkpad>true</isLinkpad> <isMoz>true</isMoz> <leveling>true</leveling> <levelingCount>1</levelingCount> <levelingCountPerDay>1</levelingCountPerDay> <linkpad>8</linkpad> <linksWithAnchor>true</linksWithAnchor> <linksWithAnchorCount>1</linksWithAnchorCount> <linksWithoutAnchor>true</linksWithoutAnchor> <linksWithoutAnchorCount>1</linksWithoutAnchorCount> <moz>6</moz> <perDomain>30</perDomain> <refencesCountDayLimit>31</refencesCountDayLimit> </CreateProjectModel>
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.