-
Print
-
DarkLight
GET/projectversions/
Gets list of project versions
Header
Parameter | Type | Description |
---|---|---|
api_token | string | REST API key you can get it from Settings > API. |
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 | 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 is 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 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 | Last date and time the version was modified |
Was this article helpful?