Anypoint Best Practices
path-params
general > path-params
Guidance
Path parameters are correct and valid if the following requirements are met:
- For every parameter referenced in the path string, for instance: `/users/{userId}`, the parameter must be defined in
either the `path.parameters` or `operation.parameters` objects. Nonstandard HTTP operations will be silently
ignored.
- Every `path.parameters` and `operation.parameters` parameter must be used in the path string.
Applies to EndPoint