Addon repository
Endpoints
Get addon
GET {base URL}/v2/addons/:namespace/:addon
This endpoint can be used to retrieve information about a specific addon, including metadata, all available versions and the canonical namespace of the addon.
Path variales:
namespace
: The namespace of a repository which contains the addonaddon
: The ID of the addon
Responses:
200 OK
: The addon is available on this API instance. The response body MUST be an API Addon Object.404 Not Found
: The addon is not available on this API instance.
Get addon manifest
GET {base URL}/v2/addons/:namespace/:addon/:version
This endpoint can be used to retrieve the manifest of a specific version of an addon.
Path variables:
namespace
: The namespace of a repository which contains the addonaddon
: The ID of the addonversion
: The version number of the requested version
Responses:
200 OK
: This version of the addon is available on this API instance. The response body MUST be an Addon Manifest.404 Not Found
: This version of the addon is not available on this API instance.