Skip to content

Task: Remove the status from result in the /api/v1/tasks response body #537

@kairoaraujo

Description

@kairoaraujo

What is the task about?

The status in data[result] is no longer relevant to the user.

We can remove it from the response JSON body.
However it requires first the following tasks

In the API the change is very simple.
From

status: bool = Field(
description="Task result status. `True` Success | `False` Failure"
)

To

 status: bool = Field( 
     description="Task result status. `True` Success | `False` Failure" , exclude=True
 ) 

Parent feature

No response

References

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions