-
Print
-
DarkLight
GET /projectversions
Gets the list of project versions in the project
Header
Parameter | Type | Description |
---|---|---|
api_token | string | You can get the REST API from Settings > Advanced > API tokens. |
Response
{
"data": [
{
"id": "7ba483c0-0929-4bb6-aa43-04a2f4bb8893",
"version_number": 1,
"base_version_number": 0,
"version_code_name": "v1",
"is_main_version": true,
"is_beta": false,
"is_public": true,
"is_deprecated": false,
"created_at": "2018-10-19T09:39:14.617Z",
"modified_at": "2018-10-19T09:39:14.617Z"
}
],
"extension_data": null,
"context": null,
"success": true,
"errors": [],
"warnings": [],
"information": []
}
Response Data
Parameter | Type | Description |
---|---|---|
id | string | The ID of the project version |
version_number | number | Project version number |
base_version_number | number | The version number from which this version is derived |
version_code_name | string | Custom version name |
is_main_version | boolean | "True" if this version is the main version after loading documentation |
is_beta | boolean | "True" if this version is marked as Beta |
is_public | boolean | "True" if this version is visible to the public |
is_deprecated | boolean | "True" if this version is marked as deprecated |
created_at | DateTime | The date and time the version was created |
modified_at | DateTime | The last date and time the version was modified |
Was this article helpful?