Flow and Styles Management
Overview
Using the Flow and Styles management APIs enables administrators to manage their flows and styles utilizing a management key.
Management keys are generated from Company > Management Keys. These keys will be used within the bearer token. The format is <Project ID>:<Management Key>
.
Use Cases
Test User Management:
- List/Search flows
- Export a flow
- Import a flow
- Delete a flow
- Export a theme
- Import a theme
Examples
Example - Migrate a flow to another project
- List/Search Flows to find the flow ID for the flow you would like to export.
- Export Flow using the flow ID from step 1.
- Import Flow using the
flow
andscreen
from step 2, you can now import the flow to a different project.
Example - Migrate a theme to another project
- Export Theme to export the theme.
- Import Theme take the response from step 1 as the body for the import to import the theme to a different project.
Third Party application Post UserInfo endpoint POST
Third Party application Post UserInfo endpoint
List/Search Flows POST
### List or search flows within a project utilizing a management key. This endpoint is used to list or search flows within a project. To list all flows, send an empty body such as: `{ }` or `{ "ids": [] }`. To search for a flow or several flows, send a body with the flowIds you want to search such as `{ "ids": ["sign-in"] }` or `{ "ids": ["sign-in", "sign-up"] }`. ### See Also - See [Flow Overview](/customize/flows/) for more information on flows. - See [Manage Flows](/customize/manage_flows/) for more information on managing (export, import, delete, disable, enable) flows. ### Endpoint Authentication Use authorization bearer header with the following format: `Authorization: Bearer <ProjectId:ManagementKey>`