Telegram::getChatMember PHP Method

getChatMember() public method

Use this method to get information about a member of a chat. Returns a ChatMember object on success.
Values inside $content:
Parameters Type Required Description
chat_id Integer or String Yes Unique identifier for the target chat or username of the target supergroup or channel (in the format @channelusername)
user_id Integer Yes Unique identifier of the target user
\param $content the request parameters as array \return the JSON Telegram's reply
public getChatMember ( array $content )
$content array
    public function getChatMember(array $content)
    {
        return $this->endpoint("getChatMember", $content);
    }