action braze_segment_analytics { label: "Segment Analytics" description: "This endpoint allows you to retrieve a daily series of the size of a segment over time for a segment.\n\n### Request Components\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) date as ISO 8601 date,\n \"size\" : (int) size of the segment on that date\n },\n ...\n ]\n}\n```" provider: braze method: GET path: "/segments/data_series" encoding: json input: { type: "object" properties: { ending_at: { type: "string" } length: { type: "string" } segment_id: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }