Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Page Properties
hiddentrue
idPROGRESS

Product Version
Report Note
Assignee

Resources & Remarks

Modification History

NameDateProduct VersionAction
Nils10 NOV 20212021 WinterPage created.



As of Version

product version 2021 Winter | component version 

Request MethodPOST
Response Format-
Required Permission

available if listed in authorization.accesses in authentication-prod.yml and the specified access condition is matched.

>> AUTHENTICATION Service
Description


Excerpt

Replaces an entry by another entry in the specified catalog.

Both parameters, name and entryid, are case-sensitive.

HTTP status codeDescription
204The specified entry is replaced by the entry specified in the JSON request body.
404The catalog does not exist or it exists but does not have an entry with the specified entryid.
422

Possible errors:

The name specified in the JSON request body does not match the parameter name.
There is not exactly one entry in the JSON request body.


Request Header
Request Example

https://<host>/catalog/api/catalogs/europeancountries/Spainn

Code Block
languageyml
{
    "objects": [
        {
            "properties": {
                "name": {
                    "value": "europeancountries"
                },
                "entries": {
                    "value": [["Spain"]]
                }
            }
        }
    ]
}


Response Example