You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two additions to mdm-plugin-profile that I think would be beneficial. This will help with metadata search.
Get single Profile Provider Service
There is currently only an endpoint to return a list of ProfileProviderService objects:
GET /profiles/providers
However, there is no endpoint to get a single ProfileProviderService. This should be added:
GET /profiles/providers/{profileNamespace}/{profileName}/{profileVersion?}
Where:
profileNamespace and profileName are mandatory, profileVersion is optional
Should return a single instance of the requested ProfileProviderService
This would then align with other REST endpoints by providing both an index and show controller action for providers.
List profile provider services by latest version
The GET /profiles/providers endpoint will always return every ProfileProviderService, including multiple version, since latestVersionByMetadataNamespace is hardcoded to be false. latestVersionByMetadataNamespace should be provided as an optional query parameter to allow the caller to decide this.
The text was updated successfully, but these errors were encountered:
Description
There are two additions to
mdm-plugin-profile
that I think would be beneficial. This will help with metadata search.Get single Profile Provider Service
There is currently only an endpoint to return a list of
ProfileProviderService
objects:However, there is no endpoint to get a single
ProfileProviderService
. This should be added:Where:
profileNamespace
andprofileName
are mandatory,profileVersion
is optionalProfileProviderService
This would then align with other REST endpoints by providing both an
index
andshow
controller action for providers.List profile provider services by latest version
The
GET /profiles/providers
endpoint will always return everyProfileProviderService
, including multiple version, sincelatestVersionByMetadataNamespace
is hardcoded to befalse
.latestVersionByMetadataNamespace
should be provided as an optional query parameter to allow the caller to decide this.The text was updated successfully, but these errors were encountered: