Skip to main content
Do you like Artifex? Give it a ⭐ star on GitHub!

Action Result

An ActionResult is an object which contains the result of an action. It is used to clarify the outcome of services whose effect may be ambiguous or not immediately obvious from the request itself, such as services that generate data or perform long-running tasks.

Content


  • success
    bool

    Indicates whether the action was successful or not.
  • message
    str

    A message describing the result of the action. This can be used to provide additional information about the success or failure of the action.
{
"success": true,
"message": "The action was successful",
}