POST api/SharePointApi/CheckedOutFiles
Request Information
URI Parameters
None.
Body Parameters
CheckedOutFileRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SiteUrl | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"SiteUrl": "sample string 1"
}
application/xml, text/xml
Sample:
<CheckedOutFileRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MerrittAPI.Controllers"> <SiteUrl>sample string 1</SiteUrl> </CheckedOutFileRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultOfIEnumerableOfCheckedOutFile| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | Collection of CheckedOutFile |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Content": [
{
"Library": "sample string 1",
"FileName": "sample string 2",
"CheckedOutTo": "sample string 3",
"Location": "sample string 4"
},
{
"Library": "sample string 1",
"FileName": "sample string 2",
"CheckedOutTo": "sample string 3",
"Location": "sample string 4"
}
],
"Message": "sample string 1"
}
application/xml, text/xml
Sample:
<ResultOfArrayOfCheckedOutFilelKbKJQm4 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MerrittAPI.Controllers">
<Content>
<CheckedOutFile>
<CheckedOutTo>sample string 3</CheckedOutTo>
<FileName>sample string 2</FileName>
<Library>sample string 1</Library>
<Location>sample string 4</Location>
</CheckedOutFile>
<CheckedOutFile>
<CheckedOutTo>sample string 3</CheckedOutTo>
<FileName>sample string 2</FileName>
<Library>sample string 1</Library>
<Location>sample string 4</Location>
</CheckedOutFile>
</Content>
<Message>sample string 1</Message>
</ResultOfArrayOfCheckedOutFilelKbKJQm4>