License API
Products
List Products
1min
Returns a list of all products
GET
Request
Header Parameters
Date
required
String
eq. Thu, 17 Nov 2022 20:51:35 GMT
Authorization
required
String
See signing of the License API calls article.
Curl
Node.js
JS
Python
Ruby
1curl --location --request GET '/api/v4/products' \
2--header 'Accept: application/json' \
3--header 'Date: string' \
4--header 'Authorization: string'
Responses
200
404
1[
2 {
3 "created_at": "2020-12-09T10:36:54.000Z",
4 "updated_at": "2020-12-09T10:37:02.000Z",
5 "id": 1584723961091272,
6 "product_name": "1",
7 "short_code": "1",
8 "active": true,
9 "valid_duration": "",
10 "trial_days": 0,
11 "max_activations": 1,
12 "hardware_id_required": false,
13 "is_upgrade": false,
14 "company_id": 276,
15 "allow_trial": false,
16 "enable_maintenance_period": false,
17 "floating_users": 1,
18 "is_floating": false,
19 "is_node_locked": true,
20 "is_user_locked": false,
21 "maintenance_duration": "",
22 "subscription_duration": "",
23 "default_license_type": "perpetual",
24 "max_consumptions": 1,
25 "authorization_method": "license-key",
26 "prevent_vm": false,
27 "allow_overages": false,
28 "consumption_period": null,
29 "max_overages": 0,
30 "reset_consumption": false,
31 "is_archived": true,
32 "is_floating_cloud": false,
33 "floating_timeout": 120,
34 "is_bundle": false,
35 "metadata": {},
36 "features": []
37 },
38 {
39 "created_at": "2023-07-15T10:23:15.000Z",
40 "updated_at": "2024-05-20T10:19:32.000Z",
41 "id": 1689416595016925,
42 "product_name": "abc",
43 "short_code": "def",
44 "active": true,
45 "valid_duration": "",
46 "trial_days": 307,
47 "max_activations": 1,
48 "hardware_id_required": false,
49 "is_upgrade": false,
50 "company_id": 276,
51 "allow_trial": true,
52 "enable_maintenance_period": false,
53 "floating_users": 0,
54 "is_floating": false,
55 "is_node_locked": true,
56 "is_user_locked": false,
57 "maintenance_duration": "",
58 "subscription_duration": "",
59 "default_license_type": "perpetual",
60 "max_consumptions": 1,
61 "authorization_method": "license-key",
62 "prevent_vm": false,
63 "allow_overages": false,
64 "consumption_period": null,
65 "max_overages": 0,
66 "reset_consumption": false,
67 "is_archived": false,
68 "is_floating_cloud": false,
69 "floating_timeout": 120,
70 "is_bundle": false,
71 "metadata": {
72 "a": 1
73 },
74 "features": [
75 {
76 "id": 535,
77 "code": "b",
78 "feature_type": "consumption",
79 "max_consumption": 1,
80 "metadata": {
81 "a": "b",
82 "k": "m"
83 }
84 },
85 {
86 "id": 573,
87 "code": "c",
88 "feature_type": "consumption",
89 "max_consumption": 1,
90 "metadata": {
91 "debil": "posrani"
92 }
93 },
94 {
95 "id": 609,
96 "code": "x",
97 "feature_type": "consumption",
98 "max_consumption": 1,
99 "metadata": {}
100 }
101 ]
102 }
103]


Updated 12 Dec 2024
Did this page help you?