action braze_app_sessions_by_time { label: "App Sessions by Time" description: "This endpoint allows you to retrieve a series of the number of sessions for your app over a designated time period.\n\n### Components Used\n- [Segment Identifier](https://www.braze.com/docs/api/identifier_types/)\n\n## Response\n\n```json\nContent-Type: application/json\nAuthorization: Bearer YOUR-REST-API-KEY\n{\n \"message\": (required, string) the status of the export, returns 'success' when completed without errors,\n \"data\" : [\n {\n \"time\" : (string) point in time - as ISO 8601 extended when unit is \"hour\" and as ISO 8601 date when unit is \"day\",\n \"sessions\" : (int)\n },\n ...\n ]\n}\n```" provider: braze method: GET path: "/sessions/data_series" encoding: json input: { type: "object" properties: { app_id: { type: "string" } ending_at: { type: "string" } length: { type: "string" } segment_id: { type: "string" } unit: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }