:doc:`WickrAdminAPI <../../wickr>` / Client / get_guest_user_history_count

****************************
get_guest_user_history_count
****************************



.. py:method:: WickrAdminAPI.Client.get_guest_user_history_count(**kwargs)

  

  Retrieves historical guest user count data for a Wickr network, showing the number of guest users per billing period over the past 90 days.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/wickr-2024-02-01/GetGuestUserHistoryCount>`_  


  **Request Syntax**
  ::

    response = client.get_guest_user_history_count(
        networkId='string'
    )
    
  :type networkId: string
  :param networkId: **[REQUIRED]** 

    The ID of the Wickr network for which to retrieve guest user history.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'history': [
              {
                  'month': 'string',
                  'count': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **history** *(list) --* 

        A list of historical guest user counts, organized by month and billing period.

        
        

        - *(dict) --* 

          Contains the count of guest users for a specific billing period, used for tracking historical guest user activity.

          
          

          - **month** *(string) --* 

            The month and billing period in YYYY_MM format (e.g., '2024_01').

            
          

          - **count** *(string) --* 

            The number of guest users who have communicated with your Wickr network during this billing period.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`WickrAdminAPI.Client.exceptions.ValidationError`

  
  *   :py:class:`WickrAdminAPI.Client.exceptions.BadRequestError`

  
  *   :py:class:`WickrAdminAPI.Client.exceptions.ResourceNotFoundError`

  
  *   :py:class:`WickrAdminAPI.Client.exceptions.ForbiddenError`

  
  *   :py:class:`WickrAdminAPI.Client.exceptions.UnauthorizedError`

  
  *   :py:class:`WickrAdminAPI.Client.exceptions.InternalServerError`

  
  *   :py:class:`WickrAdminAPI.Client.exceptions.RateLimitError`

  