---
title: "admUpdateProjectVersion"
canonical: "https://support.appfire.com/space/PSJ/15489820/admUpdateProjectVersion"
format: markdown
---
> Macro (aura-html)


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | admUpdateProjectVersion(versionStruct) | **Package** | adm |
| **Alias** |  | **Pkg Usage** | updateVersion(versionStruct) |

## Description

> Macro (excerpt)
> 
> Updates the version of the project by the id field.

Updates the version of the project by the id field. The version name of the project is unique and it has an id version that corresponds with it.

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| versionStruct | JVersion | Yes | Version id and the version name should have values assigned. |

## Return Type

**String**

You can safely ignore the return value of this function.

## Example

```
JVersion jVersion;
jVersion.id = 10201;
jVersion.name = "Version2";
jVersion.description = "This is the second version.";
jVersion.startDate = "2014-10-27";
jVersion.releaseDate = "2014-10-30";
return admUpdateProjectVersion(jVersion);
```


> ⚠️ This function updates only the name, description, startDate and releaseDate fields. The archived and released fields can be updated using [admArchiveProjectVersion](https://appfire.atlassian.net/wiki/spaces/PSJ/pages/15487773) and [admReleaseProjectVersion](https://appfire.atlassian.net/wiki/spaces/PSJ/pages/15487900) functions. Name must be unique.

## See also

> Macro (contentbylabel)