I have these two methods, while in the getall
connector it does not require any parameter from the URL so its working fine.
But when I'm trying the same for delete connector it is giving me error:
user_delete_connector() got an unexpected keyword argument 'id'
Help me out! To solve the specific problem
@app.route('/users/getall')
@auth.token_auth()
def user_getall_connector():
return obj.user_getall_model()
#Delelte Request Method
@app.route('/users/delete/<id>', methods=['DELETE'])
@auth.token_auth()
def user_delete_connector(id):
return obj.user_delete_model(id)