2

I have Azure durable functions app which is linked to a Azure static web app. I'm able to orchestrate function app through http trigger but I'm unable to access status url statusQueryGetUri I'm getting following error, {"code":400,"message":"Login not supported for provider azureStaticWebApps"}

How can I access status of durable function? do I have to write another HTTPTrigger GET function?

kanna
  • 1,412
  • 1
  • 15
  • 33

1 Answers1

1

As of now you can check the statusQueryGetUri is through HTTP endpoints. statusQueryGetUrialways requires a System Key as it is an admin endpoint.

GET <rootUrl>/runtime/webhooks/durabletask/instances/<GUID>
?taskHub={taskHub}
&connection={connection}
&code={systemKey}

You can also use this key to set the x-functions-key header of the http request.

REFERENCES: HTTP API reference.

How to check running status and stop Durable function

SwethaKandikonda
  • 7,513
  • 2
  • 4
  • 18