POST api/Job
Request Information
URI Parameters
None.
Body Parameters
AddRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PimType | string |
Required String length: inclusive between 0 and 50 |
|
| FeedName | string |
Required String length: inclusive between 0 and 50 |
|
| Name | string |
Required String length: inclusive between 0 and 100 |
|
| Description | string |
Required String length: inclusive between 0 and 500 |
|
| Path | string |
Required String length: inclusive between 0 and 500 |
|
| FileName | string |
String length: inclusive between 0 and 500 |
|
| Enabled | boolean |
None. |
|
| FeedContentTypeId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"pimType": "sample string 1",
"feedName": "sample string 2",
"name": "sample string 3",
"description": "sample string 4",
"path": "sample string 5",
"fileName": "sample string 6",
"enabled": true,
"feedContentTypeId": 1
}
application/xml, text/xml
Sample:
<AddRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FeedConfig.Rest.Models"> <Description>sample string 4</Description> <Enabled>true</Enabled> <FeedContentTypeId>1</FeedContentTypeId> <FileName>sample string 6</FileName> <Name>sample string 3</Name> <Path>sample string 5</Path> <FeedName>sample string 2</FeedName> <PimType>sample string 1</PimType> </AddRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.