GET /api/integration/klassering/{name}/values

Get possible values for a classification if it is configured with predefined values.

Parameters

Name In Description Required Type
name path The name of the classification to query. Note that this parameter is case insensitive true string
query query An optional search term for the values. Some principles (e.g. offnr and pnr) requires a query to actually return a result whilst others will just filter the values from the predefined result list that would be returned if the query was omitted. string

Responses

Code Returns Type
200 Allowed values for this classification Acos.WebSak.Pluss.Services.Integration.Models.Ordningsverdi[]
204 The classification have no predefined values. Note that the values might be validated another way
400 Classification name is invalid
404 Classification does not exist
500 Internal server error. See the error response object for details Acos.WebSak.Pluss.Services.Exceptions.ApiError
401 Unauthorized - Missing or invalid access token
403 Forbidden - Provided access token does not permit usage of this API or data
Response Example
[{        
        "id":"integer",
        "ordnPrinsipp":"string",
        "ordnVerdi":"string",
        "beskrivelse":"string",
        "sladdet":"boolean"
}]