We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The "destroy" method in BillingPlanController doesn't have a route, documentation or related tests
DELETE - /api/v1/billing-plans/{{plan_id}}
/api/v1/billing-plans/{{plan_id}}
{ Authorization: "Bearer {auth-token}" }
204 - Successful deletion
{ status: "error", status_code: 204 message: "This billing plan was successfully deleted", data: {} }
404 - Billing plan not found
{ status: "error", status_code: 404 message: "This billing plan not found", data: {} }
500 - Internal Server Error
{ status: "error", status_code: 500, message: "Internal server error", data: {} }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
The "destroy" method in BillingPlanController doesn't have a route, documentation or related tests
Acceptance Criteria
Request
DELETE -
/api/v1/billing-plans/{{plan_id}}
Responses
204 - Successful deletion
404 - Billing plan not found
500 - Internal Server Error
The text was updated successfully, but these errors were encountered: