/v1/projects/{projectId}/flows (GET)
GET
/v1/projects/{projectId}/flows
const url = 'https://service.v2.nairon.xyz/v1/projects/example/flows';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://service.v2.nairon.xyz/v1/projects/example/flows \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”projectId
required
string format: cuid
Responses
Section titled “Responses”Default Response
Media typeapplication/json
object
flows
required
Example
{ "flows": [ { "type": "simple", "tier": "standard" } ]}