Clear Localized Userfield Names

Last modified on September 8, 2023 at 5:25 pm

Overview

To clear all localized names from a userfield, you can send an HTTP PUT request to the userfield URL with a JSON object containing an empty object for the localizedNames property. This will clear all the current translacions.

Note that you are not limited to updating one property at a time; all fields that are valid for a particular userfield type may be updated in a single request. All fields not specified will retain their value. See the Userfield Object Reference for a list of all the object’s fields.

Example

This example shows the request-response sequence when clearing all localized names from a userfield.

Request
PUT /dc/api/v5/userfields/8da97a97a92efd18dcbc12876a4510e HTTP/1.1
Host: org.digitalchalk.com
Content-type: application/json
Accept: application/json

{
	"localizedNames": {}
}
Response
HTTP/1.1 204 No Content

References