Cleanup Profile Resolution Endpoints
Closed this issue · 2 comments
brian-comply0 commented
There are two sets of endpoints related to profile resolution:
resolved-catalog
; andresolved-snapshot
The resolved-catalog
endpoints are intended for point-in-time processing and do not persist any information.
For this reason, the only valid method/endpoint is: GET /profile/{Identifier}/resolved-catalog
This should immediately resolve the profile into a catalog and return the result.
The PUT
and PATCH
methods incorrectly exist for resolved-catalog
.
The following actions are required:
- Eliminate
PUT /profile/{Identifier}/resolved-catalog
- Eliminate
PATCH /profile/{Identifier}/resolved-catalog
brian-comply0 commented
Per Issue #87 we are eliminating PATCH
throughout the spec. Ignore any reference to PATCH
here.
brian-comply0 commented
This is addressed in PR #72.