POST api/admin/{userId}/projects

create a new project with post form

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

string

Required

Body Parameters

CreateProjectModel
NameDescriptionTypeAdditional 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": "2024-05-20T05:11:06.3109084+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>2024-05-20T05:11:06.3109084+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

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.