Information about license types
Get a list of license types.
This request has no parameters.
1
2
3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/licenseTypes' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"_links": {
"self": {
"href": "<string>",
"type": "<string>",
"title": "<string>"
},
"types": [
{
"href": "<string>",
"type": "<string>",
"title": "<string>"
}
]
},
"_embedded": {
"types": [
{
"_links": {
"self": {
"href": "<string>"
}
},
"key": "<string>",
"name": "<string>"
}
]
}
}
Get a specific license type.
string
Required1
2
3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/licenseTypes/{licenseTypeKey}' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"_links": {
"self": {
"href": "<string>",
"type": "<string>",
"title": "<string>"
},
"alternate": {
"href": "<string>",
"type": "<string>",
"title": "<string>"
}
},
"key": "<string>",
"name": "<string>"
}
Rate this page: