-
Notifications
You must be signed in to change notification settings - Fork 1
deleteContent
Codec04 edited this page Jul 24, 2021
·
1 revision
Delete a file or folder.
response = deleteContent(
contentId="content-id",
token="account-token"
)Response:
{} # api call only returns a status, no dataThe file or folder ID.
The access token of an account. Can be retrieved from the profile page.
import gofile
response = gofile.deleteContent("content-id", "token")
print(response)from gofile import deleteContent
print(
deleteContent(contentId="content-id", token="token")
)