Skip to main content

Delete file

Deletes a file on Slack

Function DeleteFile(Val Token, Val FileID) Export

ParameterCLI optionTypeDescription
Token--tokenStringBot token
FileID--fileidStringFile identifier

Returns: Map Of KeyAndValue - Serialized JSON response from Slack


Code example
  
FileID = "F070VL6FQFM";

Response = OPI_Slack.DeleteFile(Token, FileID); //Map
Response = OPI_Tools.JSONString(Response);//JSON string
CLI command example
    
oint slack DeleteFile --token %token% --fileid "F070VL6FQFM"

Result
{
"ok": true
}