Get Flow
GEThttps://$CUSTOM-DOMAIN/management/v1/flows/:type
Returns a flow. Flows are the links between an action and a specific point during a user interaction with ZITADEL.
Request​
Path Parameters
type stringrequired
id of the flow
Header Parameters
x-zitadel-orgid string
The default is always the organization of the requesting user. If you like to get users of another organization include the header. Make sure the user has permission to access the requested data.
Responses​
- 200
- default
A successful response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
flow
object
{
"flow": {
"type": {
"id": "string",
"name": {
"key": "string",
"localizedMessage": "string"
}
},
"details": {
"sequence": "2",
"creationDate": "2025-03-04T13:53:31.080Z",
"changeDate": "2025-03-04T13:53:31.080Z",
"resourceOwner": "69629023906488334"
},
"state": "FLOW_STATE_UNSPECIFIED",
"triggerActions": [
{
"triggerType": {
"id": "string",
"name": {
"key": "string",
"localizedMessage": "string"
}
},
"actions": [
{
"id": "69629023906488334",
"details": {
"sequence": "2",
"creationDate": "2025-03-04T13:53:31.080Z",
"changeDate": "2025-03-04T13:53:31.080Z",
"resourceOwner": "69629023906488334"
},
"state": "ACTION_STATE_UNSPECIFIED",
"name": "log context",
"script": "function log(context, calls){console.log(context)}",
"timeout": "string",
"allowedToFail": true
}
]
}
]
}
}
- Schema
- Example (from schema)
Schema
flow
object
{
"flow": {
"type": {
"id": "string",
"name": {
"key": "string",
"localizedMessage": "string"
}
},
"details": {
"sequence": "2",
"creationDate": "2025-03-04T13:53:31.081Z",
"changeDate": "2025-03-04T13:53:31.081Z",
"resourceOwner": "69629023906488334"
},
"state": "FLOW_STATE_UNSPECIFIED",
"triggerActions": [
{
"triggerType": {
"id": "string",
"name": {
"key": "string",
"localizedMessage": "string"
}
},
"actions": [
{
"id": "69629023906488334",
"details": {
"sequence": "2",
"creationDate": "2025-03-04T13:53:31.081Z",
"changeDate": "2025-03-04T13:53:31.081Z",
"resourceOwner": "69629023906488334"
},
"state": "ACTION_STATE_UNSPECIFIED",
"name": "log context",
"script": "function log(context, calls){console.log(context)}",
"timeout": "string",
"allowedToFail": true
}
]
}
]
}
}
- Schema
- Example (from schema)
Schema
flow
object
{
"flow": {
"type": {
"id": "string",
"name": {
"key": "string",
"localizedMessage": "string"
}
},
"details": {
"sequence": "2",
"creationDate": "2025-03-04T13:53:31.083Z",
"changeDate": "2025-03-04T13:53:31.083Z",
"resourceOwner": "69629023906488334"
},
"state": "FLOW_STATE_UNSPECIFIED",
"triggerActions": [
{
"triggerType": {
"id": "string",
"name": {
"key": "string",
"localizedMessage": "string"
}
},
"actions": [
{
"id": "69629023906488334",
"details": {
"sequence": "2",
"creationDate": "2025-03-04T13:53:31.083Z",
"changeDate": "2025-03-04T13:53:31.083Z",
"resourceOwner": "69629023906488334"
},
"state": "ACTION_STATE_UNSPECIFIED",
"name": "log context",
"script": "function log(context, calls){console.log(context)}",
"timeout": "string",
"allowedToFail": true
}
]
}
]
}
}
An unexpected error response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
code int32
message string
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
code int32
message string
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
code int32
message string
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://$CUSTOM-DOMAIN/management/v1/flows/:type' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
ResponseClear