Skip to main content

lib/slack/web/docs/apps.uninstall.json

{
  "desc": "Uninstalls your app from a workspace.",

  "args": {
    "client_id": {
      "required"  : true,
      "example" : "4b39e9-752c4",
      "desc"    : "Issued when you created your application."
    },
    "client_secret": {
      "required"  : true,
      "example" : "33fea0113f5b1",
      "desc"    : "Issued when you created your application."
    }
  },

  "errors": {
    "invalid_client_id" : "Value passed for `client_id` was invalid.",
    "bad_client_secret" : "Value passed for `client_secret` was invalid.",
    "client_id_token_mismatch": "The provided client ID and token do not belong to the same app.",
    "not_authed": "No authentication token provided.",
    "invalid_auth": "Some aspect of authentication cannot be validated. Either the provided token is invalid or the request originates from an IP address disallowed from making the request.",
    "account_inactive": "Authentication token is for a deleted user or workspace.",
    "token_revoked": "Authentication token is for a deleted user or workspace or the app has been removed.",
    "no_permission": "The workspace token used in this request does not have the permissions necessary to complete the request. Make sure your app is a member of the conversation it's attempting to post a message to.",
    "is_bot": "This method cannot be called by a bot user."
  }
}