POST api/JobCreate/SaveSourceFields

Request Information

URI Parameters

None.

Body Parameters

Job
NameDescriptionTypeAdditional information
AccountID

integer

None.

ProcessID

integer

None.

buttonID

integer

None.

IntakeProcessControlValueXML

string

None.

UploadedSourceFilesXML

string

None.

xmlDeliveryFileBilling

string

None.

MailIndex

integer

None.

AccountName

string

None.

MailJobIndex

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "AccountID": 1,
  "ProcessID": 2,
  "buttonID": 3,
  "IntakeProcessControlValueXML": "sample string 4",
  "UploadedSourceFilesXML": "sample string 5",
  "xmlDeliveryFileBilling": "sample string 6",
  "MailIndex": 7,
  "AccountName": "sample string 8",
  "MailJobIndex": 9
}

application/xml, text/xml

Sample:
<Job xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIDataLayer">
  <AccountID>1</AccountID>
  <AccountName>sample string 8</AccountName>
  <IntakeProcessControlValueXML>sample string 4</IntakeProcessControlValueXML>
  <MailIndex>7</MailIndex>
  <MailJobIndex>9</MailJobIndex>
  <ProcessID>2</ProcessID>
  <UploadedSourceFilesXML>sample string 5</UploadedSourceFilesXML>
  <buttonID>3</buttonID>
  <xmlDeliveryFileBilling>sample string 6</xmlDeliveryFileBilling>
</Job>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>