> For the complete documentation index, see [llms.txt](https://help.recart.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.recart.com/developers/public-api/flow/retrieve-list-of-automated-flows.md).

# Retrieve list of automated flows

The site's automated flows — configuration only, no statistics. Default page size 100.

```json
{"openapi":"3.1.0","info":{"title":"Recart API","version":"2023-12"},"tags":[{"name":"Flow","description":"Flows"}],"servers":[{"url":"https://api.recart.com/app-integrations/2023-12","description":"Production"}],"security":[{"ApiKeyAuth":[]}],"components":{"securitySchemes":{"ApiKeyAuth":{"type":"apiKey","in":"header","name":"X-Recart-API-Key","description":"It can be obtained in Recart account after contacting Support"}},"schemas":{"AutomatedFlow":{"type":["object"],"required":["type","attributes"],"properties":{"type":{"type":"string","enum":["automated-flows"]},"attributes":{"$ref":"#/components/schemas/AutomatedFlowAttributes"}}},"AutomatedFlowAttributes":{"type":"object","required":["id","name","status","tags"],"properties":{"id":{"type":"string","description":"ID of the automated flow"},"name":{"type":"string","description":"Name of the automated flow"},"status":{"type":"string","description":"Status of the automated flow","enum":["draft","active","inactive","cancelled"]},"tags":{"type":"array","items":{"type":"string"},"description":"Flow tags"},"isQuietHoursEnabled":{"type":"boolean","description":"Whether messages from this flow are held during the subscriber's quiet hours"},"isSmartSendingEnabled":{"type":"boolean","description":"Whether Smart Sending is enabled, suppressing sends to recently-messaged subscribers"},"segmentId":{"type":"string","description":"ID of the segment gating entry into the flow, if configured"},"triggerDiscountId":{"type":"string","description":"ID of the discount code associated with the flow's trigger, if configured"},"createdAt":{"type":"string","format":"date-time","description":"When the flow was created"},"updatedAt":{"type":"string","format":"date-time","description":"When the flow was last updated"}}},"HttpErrorBody":{"type":"object","required":["errors"],"properties":{"errors":{"type":"array","items":{"type":"object","required":["id","code","title","detail"],"properties":{"id":{"type":"string"},"code":{"type":"string"},"title":{"type":"string"},"detail":{"type":"string"}}}}}}},"responses":{"HttpError":{"description":"HTTP Error response","content":{"application/vnd.api+json":{"schema":{"$ref":"#/components/schemas/HttpErrorBody"}}}}}},"paths":{"/automated-flows":{"get":{"summary":"Retrieve list of automated flows","tags":["Flow"],"operationId":"listAutomatedFlows","description":"The site's automated flows — configuration only, no statistics.\nDefault page size 100.\n","parameters":[{"name":"limit","in":"query","description":"Maximum number of automated flows to return","schema":{"type":"integer","minimum":1,"maximum":100,"default":100}},{"name":"offset","in":"query","description":"Number of automated flows to skip, for pagination","schema":{"type":"integer","minimum":0,"default":0}},{"name":"tags","in":"query","description":"Filter to flows carrying ALL given tags. Dashboard groups map\nto umbrella tags: default-welcome, joined-a-segment,\nabandonment, receipt, fulfillment, back-in-stock, integration\n(plus the specific integration's own tag), subscriber-support.\n","schema":{"type":"array","items":{"type":"string"}}}],"responses":{"200":{"description":"Ok","content":{"application/vnd.api+json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/AutomatedFlow"}}}}}}},"4XX":{"$ref":"#/components/responses/HttpError"},"5XX":{"$ref":"#/components/responses/HttpError"}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.recart.com/developers/public-api/flow/retrieve-list-of-automated-flows.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
