Applies the inherited (parent) access list to the specified document or folder, overwriting any custom security settings.
/srv.asmx/ApplyInheritedAccessList
/srv.asmx/ApplyInheritedAccessList?authenticationTicket=...&Path=.../srv.asmx/ApplyInheritedAccessList (form data)http://tempuri.org/ApplyInheritedAccessList| Parameter | Type | Required | Description |
|---|---|---|---|
authenticationTicket |
string | Yes | Authentication ticket obtained from AuthenticateUser. |
Path |
string | Yes | Full path to the document or folder. |
<response success="true" error="" />
<response success="false" error="[ErrorCode] Error message" />
Change security permission on the target document or folder.
GET /srv.asmx/ApplyInheritedAccessList
?authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
&Path=/Finance/Reports/Q4Report.pdf
HTTP/1.1
POST /srv.asmx/ApplyInheritedAccessList HTTP/1.1
Content-Type: application/x-www-form-urlencoded
authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
&Path=/Finance/Reports/Q4Report.pdf
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tns="http://tempuri.org/">
<soap:Body>
<tns:ApplyInheritedAccessList>
<tns:AuthenticationTicket>3f2504e0-4f89-11d3-9a0c-0305e82c3301</tns:AuthenticationTicket>
<tns:Path>/Finance/Reports/Q4Report.pdf</tns:Path>
</tns:ApplyInheritedAccessList>
</soap:Body>
</soap:Envelope>
SetAccessList.GetAccessList.| Error | Description |
|---|---|
[900] Authentication failed |
Invalid or missing authentication ticket. |
[901] Session expired or Invalid ticket |
The ticket has expired or does not exist. |
| Path not found | The specified document or folder does not exist. |
| Access denied | The calling user lacks permission to change security on this item. |
SystemError:... |
An unexpected server-side error occurred. |