docs/daprdocs/content/en/developing-applications/error-codes/http-error-codes.md

606 B

type title linkTitle description weight
docs Handling HTTP error codes HTTP Detailed reference of the Dapr HTTP error codes and how to handle them 30

For HTTP calls made to Dapr runtime, when an error is encountered, an error JSON is returned in response body. The JSON contains an error code and an descriptive error message.

{
    "errorCode": "ERR_STATE_GET",
    "message": "Requested state key does not exist in state store."
}
  • [Error code reference list]({{< ref error-codes-reference.md >}})
  • [Handling gRPC error codes]({{< ref grpc-error-codes.md >}})