• App versions
  • Applications
  • Apps
  • Assets
  • Categories
  • License types
  • Migrations
  • Privacy and Security
  • Products
  • Promotions (Removed)
  • Reporting
  • Reviews
  • Vendors
Platform
Atlassian Marketplace / Reference / Marketplace REST API

License types

Postman Collection
OpenAPI

Information about license types

GET

Get license types

Get a list of license types.

Request

This request has no parameters.

Responses

application/json

LicenseTypesCollection
GET/licenseTypes
1 2 3 curl --request GET \ --url 'https://marketplace.atlassian.com/rest/2/licenseTypes' \ --header 'Accept: application/json'
200Response
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

Get license type

Get a specific license type.

Request

Path parameters

licenseTypeKey

string

Required

Responses

application/json

LicenseType
GET/licenseTypes/{licenseTypeKey}
1 2 3 curl --request GET \ --url 'https://marketplace.atlassian.com/rest/2/licenseTypes/{licenseTypeKey}' \ --header 'Accept: application/json'
200Response
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: