POST api/WebDavServer/CheckIn
Request Information
URI Parameters
None.
Body Parameters
Document| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
Required |
|
| CompanyId | globally unique identifier |
Required |
|
| Title | string |
Required |
|
| Extension | string |
Required |
|
| CheckedOutToken | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "c111a82e-2e1d-41ea-ad07-f44874b8f7a8",
"CompanyId": "348dbb71-3c5c-4389-b66d-bff7c5bd2faf",
"Title": "sample string 3",
"Extension": "sample string 4",
"CheckedOutToken": "61ba7e96-eac4-4772-b5f2-2b77d8ed03a9"
}
application/xml, text/xml
Sample:
<Document xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Descartes.WebDavServer.DTO"> <CheckedOutToken>61ba7e96-eac4-4772-b5f2-2b77d8ed03a9</CheckedOutToken> <CompanyId>348dbb71-3c5c-4389-b66d-bff7c5bd2faf</CompanyId> <Extension>sample string 4</Extension> <Id>c111a82e-2e1d-41ea-ad07-f44874b8f7a8</Id> <Title>sample string 3</Title> </Document>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |