POST /api/integration/klassering/unredact

Remove redaction from a value returned from the endpoint `api/integration/klassering/{name}/values` and log that it has been unredacted

Request body

{ 
        
        "id":"integer",
        "ordnPrinsipp":"string",
        "ordnVerdi":"string",
        "beskrivelse":"string",
        "sladdet":"boolean"
}

Responses

Code Returns Type
200 The classification with the value Acos.WebSak.Pluss.Services.Integration.Models.Ordningsverdi
400 Bad request. Look at error message (usually invalid id or trying to remove redaction from a value that is not redacted) Acos.WebSak.Pluss.Services.Exceptions.ApiError
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"
}