> ## Documentation Index
> Fetch the complete documentation index at: https://developer.rocket.chat/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Weekly Data When Chat is Busier

> <div style="text-align: center; margin: 1rem 0 1rem 0;"><img src="https://raw.githubusercontent.com/RocketChat/Rocket.Chat-Open-API/main/images/premium.svg" alt="Premium tag" style="display: block; margin: auto;"></div>

Retrieves weekly data when chat is busier. 

Permission required: `view-engagement-dashboard` 

### Changelog
| Version      | Description | 
| ---------------- | ------------|
|3.1.0            | Added       |

## OpenAPI

````json GET /api/v1/engagement-dashboard/users/chat-busier/weekly-data
{
  "openapi": "3.0.0",
  "info": {
    "version": "1.0.0",
    "title": "Statistics"
  },
  "servers": [
    {
      "url": "https://apiexplorer.support.rocket.chat"
    }
  ],
  "paths": {
    "/api/v1/engagement-dashboard/users/chat-busier/weekly-data": {
      "get": {
        "tags": [
          "Users Engagement"
        ],
        "summary": "Get Weekly Data When Chat is Busier",
        "description": "<div style=\"text-align: center; margin: 1rem 0 1rem 0;\"><img src=\"https://raw.githubusercontent.com/RocketChat/Rocket.Chat-Open-API/main/images/premium.svg\" alt=\"Premium tag\" style=\"display: block; margin: auto;\"></div>\n\nRetrieves weekly data when chat is busier. \n\nPermission required: `view-engagement-dashboard` \n\n### Changelog\n| Version      | Description | \n| ---------------- | ------------|\n|3.1.0            | Added       |",
        "operationId": "get-api-v1-engagement-dashboard-users-chat-busier-weekly-data",
        "parameters": [
          {
            "$ref": "#/components/parameters/Auth-Token"
          },
          {
            "$ref": "#/components/parameters/UserId"
          },
          {
            "$ref": "#/components/parameters/start"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "month": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "users": {
                            "type": "integer"
                          },
                          "day": {
                            "type": "integer"
                          },
                          "month": {
                            "type": "integer"
                          },
                          "year": {
                            "type": "integer"
                          }
                        }
                      }
                    },
                    "success": {
                      "type": "boolean"
                    }
                  }
                },
                "examples": {
                  "Success Example": {
                    "value": {
                      "days": [
                        {
                          "day": "2023-02-01T00:00:00Z",
                          "users": "1"
                        },
                        {
                          "day": "2023-01-24T00:00:00Z",
                          "users": "1"
                        },
                        {
                          "day": "2023-01-17T00:00:00Z",
                          "users": "1"
                        }
                      ],
                      "period": {
                        "count": "27",
                        "variation": "27"
                      },
                      "yesterday": {
                        "count": "0",
                        "variation": "0"
                      },
                      "success": "true"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "$ref": "#/components/responses/keyError"
          },
          "401": {
            "$ref": "#/components/responses/authorizationError"
          },
          "403": {
            "$ref": "#/components/responses/forbiddenError"
          }
        }
      }
    }
  },
  "components": {
    "parameters": {
      "Auth-Token": {
        "name": "X-Auth-Token",
        "in": "header",
        "description": "The token of the authenticated user.",
        "required": "true",
        "schema": {
          "type": "string"
        },
        "example": "RScctEHSmLGZGywfIhWyRpyofhKOiMoUIpimhvheU3f"
      },
      "UserId": {
        "name": "X-User-Id",
        "in": "header",
        "description": "The user ID of the authenticated user.",
        "required": "true",
        "schema": {
          "type": "string"
        },
        "example": "rbAXPnMktTFbNpwtJ"
      },
      "start": {
        "name": "start",
        "in": "query",
        "description": "The start date.",
        "required": "true",
        "schema": {
          "type": "string"
        },
        "example": "2023-10-29T14:48:00Z"
      }
    },
    "responses": {
      "keyError": {
        "description": "Bad Request",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
                "success": {
                  "type": "boolean"
                },
                "error": {
                  "type": "string"
                }
              }
            },
            "examples": {
              "Missing key": {
                "value": {
                  "success": "false",
                  "error": "Match error: Missing key 'start'"
                }
              },
              "Example 2": {
                "value": {
                  "success": "false",
                  "error": "Match error: Failed Match.Where validation in field start"
                }
              }
            }
          }
        }
      },
      "authorizationError": {
        "description": "Unauthorized",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
                "status": {
                  "type": "string"
                },
                "message": {
                  "type": "string"
                }
              }
            },
            "examples": {
              "Authorization Error": {
                "value": {
                  "status": "error",
                  "message": "You must be logged in to do this."
                }
              }
            }
          }
        }
      },
      "forbiddenError": {
        "description": "Forbidden",
        "content": {
          "application/json": {
            "schema": {
              "type": "object",
              "properties": {
                "success": {
                  "type": "boolean"
                },
                "error": {
                  "type": "string"
                }
              }
            },
            "examples": {
              "Permission Error": {
                "value": {
                  "success": "false",
                  "error": "User does not have the permissions required for this action [error-unauthorized]"
                }
              }
            }
          }
        }
      }
    }
  }
}
````

