Browse: Field-level Resource

Endpoints under /browse/field manage the facets available when users view a list of fields for a given resource.
Field-level calls return results based on the user credentials for the current authentication session and the parent data resource.

POST /v2/browse/field/facet

Request Body
media type data type
application/json BrowseRequest (JSON)
Response Body
media type data type description
application/json object (JSON)

Example

Request
POST /v2/browse/field/facet
Content-Type: application/json
Accept: application/json

                
{
  "resourceKey" : "...",
  "lfKey" : "...",
  "facetSelections" : [ {
    "facetName" : "...",
    "displayName" : "...",
    "facetCategories" : [ "...", "..." ]
  }, {
    "facetName" : "...",
    "displayName" : "...",
    "facetCategories" : [ "...", "..." ]
  } ],
  "searchPhrase" : "...",
  "parentFieldPath" : "...",
  "showMembers" : true,
  "pagingCriteria" : {
    "start" : 12345,
    "size" : 12345
  },
  "dataSetKey" : "...",
  "topAndBottomPatternCount" : 12345,
  "forceNativeBrowse" : true,
  "requestType" : "..."
}
                
              
Response
HTTP/1.1 201 Created
Content-Type: application/json

                
...