POST api/XMLSentWOLFLog
Add a new record to the XMLSentToWOLF table
Request Information
URI Parameters
None.
Body Parameters
XMLSentWOLFLogDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| FileName | string |
None. |
|
| WOLFXML | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FileName": "sample string 1",
"WOLFXML": "sample string 2"
}
text/html
Sample:
{"FileName":"sample string 1","WOLFXML":"sample string 2"}
application/xml, text/xml
Sample:
<XMLSentWOLFLogDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrainingFundREST._BOL"> <FileName>sample string 1</FileName> <WOLFXML>sample string 2</WOLFXML> </XMLSentWOLFLogDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
StatusDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"msg": "sample string 1"
}
text/html
Sample:
{"id":1,"msg":"sample string 1"}
application/xml, text/xml
Sample:
<StatusDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrainingFundREST._DAL"> <id>1</id> <msg>sample string 1</msg> </StatusDTO>