action braze_segment_list { label: "Segment List" description: "This endpoint allows you to export a list of segments, each of which will include its name, Segment API Identifier, and whether it has analytics tracking enabled. The segments are returned in groups of 100 sorted by time of creation (oldest to newest by default). Archived segments are not included.\n\n### Request Components\n- [Segment Identifier](https://www.braze.com/docs/api/identifier_types/)\n\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 \"segments\" : [\n {\n \"id\" : (string) Segment API Identifier,\n \"name\" : (string) segment name,\n \"analytics_tracking_enabled\" : (boolean) whether the segment has analytics tracking enabled,\n \"tags\" : (array) tag names associated with the segment\n },\n ...\n ]\n}\n```" provider: braze method: GET path: "/segments/list" encoding: json input: { type: "object" properties: { page: { type: "string" } sort_direction: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }