Delete Values in a Folder Metadata Collection
/documents/api/1.1/folders/{folderId}/metadata
Reset (delete) values in specified fields in a metadata collection.
Note: To remove a metadata value from a folder, you must be the owner or have the manager role for the folder.
Request
- application/json
- application/xml
- folderId
-
Type:
stringRequired:trueGlobally unique identifier (GUID) for the folder. If the referenced folder is the user's home folder, the value for
folderIdisself.
- accessToken
-
Type:
stringApplink access token authorizing the current user to access this folder. This parameter is mandatory if
appLinkIDis used. It can be used as accessToken or AccessToken. - appLinkID
-
Type:
stringApplink ID authorizing the current user to access this folder. Any time the parameter
appLinkIDis used, a parameteraccessTokenmust be provided as well. To work, this applink must have at least the contributor role granted. It can be used as appLinkID or AppLinkID.
The request body defines details of the delete values in a folder metadata collection request. Bold indicates a required value.
The request body defines details of the delete values in a folder metadata collection request. Bold indicates a required value.
- collection
-
Type:
stringRequired:trueCollection name. For a user personal collection, it must start withPersonal., such asPersonal.MyCollection. - fields
-
Type:
stringRequired:trueOne or more field names, separated by commas, whose values you want to delete.
Response
- application/json
- application/xml
The request was fulfilled.
- errorCode
-
Type:
stringAn error code of zero (0) indicates no errors. - idList
-
Type:
stringGlobally unique identifier (GUID) of the original folder. - type
-
Type:
stringItem typefolder.
Example application/json
{
"idList":"F94131468853B4845E0508854EE870070A1AA68C3354",
"type":"folder",
"errorCode":"0"
}
Request parameters are not formatted correctly.
Folder ID is not found.
Examples
The following example deletes the values in fields A1 and A2 in the CollectionA metadata collection associated with the specified folder.
DELETE .../folders/F94131468853B4845E0508854EE870070A1AA68C3354/metadata
Request Header
None.
Request Body
{
"collection": "CollectionA",
"fields": "A1,A2"
}
HTTP Status Code
HTTP_STATUS = 200
JSON Response
{
"errorCode": "0",
"idList": "F94131468853B4845E0508854EE870070A1AA68C3354",
"type": "folder"
}
Example 2
The following example deletes the values in fields A1 and A2 in the Personal.CollectionA metadata collection associated with the specified folder.
DELETE .../folders/F94131468853B4845E0508854EE870070A1AA68C3354/metadata
Request Header
None.
Request Body
{
"collection": "Personal.CollectionA",
"fields": "A1,A2"
}
HTTP Status Code
HTTP_STATUS = 200
JSON Response
{
"errorCode": "0",
"idList": "F94131468853B4845E0508854EE870070A1AA68C3354",
"type": "folder"
}
Example 3
The example uses an applink ID because this folder is under a folder structure not owned by or shared with the current user. The applink ID and access token are submitted in the request header.
DELETE .../templates/FAD7A87F0613A0CBDD4DA521B5D17B95F47087F4E518/site
Request Header
appLinkID: LF5Bxj4TPo_p4n4qWn0tbKTicR2cTUJKv7X_ng9E7ry93rRuDokPqS1d6-wKwhb_wtcGYFDsI_cNMxeKQ-HR-FXQhiVoGRTYM_MPZY8qpICfYU94mmnMjM_cvsRhKMzc0NJgvwEJfqqDwPsAVrhc8cmg== accessToken: 352FpiMmW66PeYI1Gh5b83I9CXRwZhLfYAu4TXdqpzD8uNKUBMZVVJ3ZvivUW8kQ
Request Body
{
"collection": "ApplinkCollection",
"fields": "appField1,appField2"
}
HTTP Status Code
HTTP_STATUS = 200
JSON Response
{
"errorCode": "0",
"idList": "FAD7A87F0613A0CBDD4DA521B5D17B95F47087F4E518",
"type": "folder"
}