<!-- נוצר אוטומטית ממקור התיעוד הקנוני של Teloring. אין לערוך קובץ זה. -->

עמוד קנוני: https://docs.teloring.com/he/api/get-studio-flow
עודכן לאחרונה: 2026-08-20T20:52:05.000Z

# Get a flow with its blocks

import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
import ParamsDetails from "@theme/ParamsDetails";
import RequestSchema from "@theme/RequestSchema";
import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
import Heading from "@theme/Heading";
import Translate from "@docusaurus/Translate";

<Heading
  as={"h1"}
  className={"openapi__heading"}
  children={"Get a flow with its blocks"}
>
</Heading>

<MethodEndpoint
  method={"get"}
  path={"/studio/flows/{flow_id}"}
  context={"endpoint"}
>
  
</MethodEndpoint>



One flow, with every block and trigger it contains and the settings inside each.

`blocks[].settings` is block-specific by design — a *send WhatsApp template*
block and a *branch on business hours* block have nothing in common. Use
`GET /v1/studio/blocks` as the dictionary.

`connections` describes the wiring: which block's output leads to which block's
input, and through which handle. On a branching block the handle is what tells
you *which* branch, so do not ignore it.

<Heading
  id={"request"}
  as={"h2"}
  className={"openapi-tabs__heading"}
>
  <Translate id="theme.openapi.request.title">Request</Translate>
</Heading>

<ParamsDetails
  {...require("./get-studio-flow.ParamsDetails.json")}
>
  
</ParamsDetails>

<RequestSchema
  {...require("./get-studio-flow.RequestSchema.json")}
>
  
</RequestSchema>

<StatusCodes
  {...require("./get-studio-flow.StatusCodes.json")}
>
  
</StatusCodes>
