A channel has been unshared with an external workspace

Facts

Works with

Events API
{    
    "type": "channel_unshared",
    "previously_connected_team_id": "E163Q94DX",
    "channel": "C123ABC456",
    "is_ext_shared": false,
    "event_ts": "1561064063.001100"
}

The channel_unshared event is sent to all event subscriptions when an external workspace has been removed from an existing shared channel.

The previously_connected_team_id value is the team ID of the workspace that has been removed from the channel. Note that this ID may start with E, indicating that it is the ID of the organization that has been removed from the channel.

The channel value is the ID for the public or private channel.

The is_ext_shared value is true if the channel is still externally shared, and false otherwise.

This event is supported as a bot user subscription in the Events API. Workspace event subscriptions are also available for tokens holding at least one of the channels:read or groups:read scopes. Which events your app will receive depends on the scopes and their context. For instance, you'll only receive channel_unshared events for private channels if your app has the groups:read permission.

When an event occurs, we will send an HTTP POST request to your Request URL. The outer payload is uniform across all Events API methods, and contains fields like team_id and event. Learn more