# Name

Within a project, each object has a name, which is a UTF-8 string which must not match the regular expression `[\x00-\x1F]`. This means non-printable characters like whitespace tabs and newlines are not allowed. Object names need not be unique within the same project.

The name of an object is returned by the "describe" method, and modified by the "rename" method.

## API method: `/class-xxxx/rename`

### Specification

Renames an existing object in the specified project.

### Inputs

* `project` **string** (required) ID of the project or container containing the object to be modified.
* `name` **string** (required) The new name of the object.

### Outputs

* `id` **string** ID of the manipulated object.

### Errors

* InvalidInput (the input is not a hash, `project` is missing or is not a string, `name` is missing or is an empty string or matches the regular expression `[\x00-\x1F]`)
* ResourceNotFound (the specified object does not exist, the specified project does not exist, or the specified project does not contain the specified object)
* PermissionDenied (If the object is open, UPLOAD access is required, otherwise CONTRIBUTE access is required for the specified project)
