/ Platform API
Platform API
    Chat Platform API v3
    Chat Platform API
    Chat Platform API
    Version 3

    Get default invitation preference

    Copy link

    You can retrieve the default channel invitation preference of an application using this API. To retrieve the channel invitation preference at the individual user level, see the get channel invitation preference page.


    HTTP request

    Copy link
    GET https://api-{application_id}.sendbird.com/v3/applications/default_channel_invitation_preference
    

    Responses

    Copy link

    If successful, this action returns the value of the default channel invitation preference of an application in the response body.

    {
        "auto_accept": true
    }
    
    Property nameTypeDescription

    auto_accept

    boolean

    Indicates for users within an application whether or not to automatically join a group channel promptly from an invitation without having to accept it. By default, invited users are automatically added as members to a group channel without the need to accept an invitation. If you would like to give users the option to decide whether to accept or decline an invitation to join a group channel, change the value to false. (Default: true)

    In the case of an error, an error object like below is returned. See the error codes section for more details.

    {
        "message": "Invalid value: \"JSON body.\".",
        "code": 400403,
        "error": true
    }