PUT api/TestFileCreation
Request Information
URI Parameters
None.
Body Parameters
TestFileCreationRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| FileName | string |
None. |
|
| PathFile | string |
None. |
|
| Operation | string |
None. |
|
| SecurityToken | globally unique identifier |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| UniqueIdDispositivo | globally unique identifier |
None. |
|
| Ambiente | string |
None. |
|
| DataBaseLogicalName | string |
None. |
|
| ApiAppName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FileName": "sample string 1",
"PathFile": "sample string 2",
"Operation": "sample string 3",
"SecurityToken": "72613e3e-96c6-4de0-84b3-ffd1bc1e58d5",
"CustomerId": "38d3b5b0-fcc6-4e4a-970d-94d36b305708",
"UniqueIdDispositivo": "7ab1bda0-d59e-43a1-a1c5-1941fff0add1",
"Ambiente": "sample string 6",
"DataBaseLogicalName": "sample string 7",
"ApiAppName": "sample string 8"
}
application/xml, text/xml
Sample:
<TestFileCreationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XmaintServices.Models"> <Ambiente>sample string 6</Ambiente> <ApiAppName>sample string 8</ApiAppName> <CustomerId>38d3b5b0-fcc6-4e4a-970d-94d36b305708</CustomerId> <DataBaseLogicalName>sample string 7</DataBaseLogicalName> <SecurityToken>72613e3e-96c6-4de0-84b3-ffd1bc1e58d5</SecurityToken> <UniqueIdDispositivo>7ab1bda0-d59e-43a1-a1c5-1941fff0add1</UniqueIdDispositivo> <FileName>sample string 1</FileName> <Operation>sample string 3</Operation> <PathFile>sample string 2</PathFile> </TestFileCreationRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
TestFileCreationResult| Name | Description | Type | Additional information |
|---|---|---|---|
| FileName | string |
None. |
|
| SecurityToken | globally unique identifier |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| ErrorMessage | string |
None. |
|
| AuthorizationErrorMessage | string |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"FileName": "sample string 1",
"SecurityToken": "a692d07e-c054-4a8b-a492-541999d949ac",
"CustomerId": "ef01dad6-63ec-4400-aa6a-bb9ec64cee24",
"ErrorMessage": "sample string 4",
"AuthorizationErrorMessage": "sample string 5",
"Success": true
}
application/xml, text/xml
Sample:
<TestFileCreationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XmaintServices.Models"> <AuthorizationErrorMessage>sample string 5</AuthorizationErrorMessage> <CustomerId>ef01dad6-63ec-4400-aa6a-bb9ec64cee24</CustomerId> <ErrorMessage>sample string 4</ErrorMessage> <SecurityToken>a692d07e-c054-4a8b-a492-541999d949ac</SecurityToken> <Success>true</Success> <FileName>sample string 1</FileName> </TestFileCreationResult>