https://prefect.io logo
Title
j

John Ramirez

08/01/2020, 6:26 PM
Why am I getting this error when I am trying to create flow run using the
client
object
prefect.utilities.exceptions.ClientError: [{'path': ['create_flow_run'], 'message': 'Flow 8eb08aff-f439-422f-94ba-31d30af635cb not found', 'extensions': {'code': 'INTERNAL_SERVER_ERROR'}}]
c

Chris White

08/01/2020, 6:27 PM
The error message says that you’re providing a flow ID that doesn’t exist
where did you get that ID from?
j

John Ramirez

08/01/2020, 6:28 PM
the URL
in prefect
c

Chris White

08/01/2020, 6:29 PM
ah i see; the URL for the flow dashboard references the flow group ID
j

John Ramirez

08/01/2020, 6:30 PM
how can i get the actual fow-id?
c

Chris White

08/01/2020, 6:32 PM
hmmm it looks like we don’t expose that in a very transparent way right now - I’ll make a note of that. In the meantime you can run this query:
query{
  flow(where: {flow_group_id: {_eq: "8eb08aff-f439-422f-94ba-31d30af635cb
"}, archived: {_eq: false}}){
   id 
  }
}
j

John Ramirez

08/01/2020, 6:32 PM
thank you
c

Chris White

08/01/2020, 6:33 PM
👍 👍