HTTP method of the API operation.
IMPORTANT: Methods must be written in lowercase only (e.g., "get", not "GET").
Note that, if the API operation has requestBody, method must not
be get
.
Also, even though the API operation has been designed to only get
information, but it needs complicated request information, it must be
defined as patch
method with requestBody data specification.
get
: get informationpatch
: get information with complicated request data
(requestBody)post
: create new recordput
: update existing recorddelete
: remove recordHTTP path of the API operation.
The URL path for accessing this API operation, using path parameters
enclosed in curly braces (e.g., /shoppings/customers/sales/{saleId}
).
It must be corresponded to the parameters path parameters.
The path structure should clearly indicate which database entity this operation is manipulating, helping to ensure all entities have appropriate API coverage.
Path validation rules:
Valid examples:
Invalid examples:
API endpoint information.