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
Today, this NApp lacks a standard for the HTTP update request methods and successful response code.
Possible Solution:
Use PATCH to modify an existing resource [1, 2] and return the code 204 in success response. Example:
enable_interface
POST v3/interfaces/switch/<dpid>/enable
PATCH v3/interfaces/switch/<dpid>/enable
References: [1] - https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH [2] - https://tools.ietf.org/html/rfc5789#section-2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Today, this NApp lacks a standard for the HTTP update request methods and successful response code.
Possible Solution:
Use PATCH to modify an existing resource [1, 2] and return the code 204 in success response.
Example:
enable_interface
:Description: Enable interfaces in the topology.
POST v3/interfaces/switch/<dpid>/enable
success response: 200PATCH v3/interfaces/switch/<dpid>/enable
success response: 204References:
[1] - https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PATCH
[2] - https://tools.ietf.org/html/rfc5789#section-2
The text was updated successfully, but these errors were encountered: