Hub capabilities API - PUT an extension 2.0 release notes
Sets the release notes of an extension 2.0 release. Any notes are overwritten.
The request consumes an application/json
payload.
PUT | ManagedDynatrace for Government | https://{your-domain}/e/{your-environment-id}/api/v2/hub/extensions2/{extensionName}/releases/{version}/releaseNotes |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/v2/hub/extensions2/{extensionName}/releases/{version}/releaseNotes | |
Environment and Cluster ActiveGate (default port 9999) | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/v2/hub/extensions2/{extensionName}/releases/{version}/releaseNotes |
Authentication
To execute this request, you need an access token with hub.write
scope.
To learn how to obtain and use it, see Tokens and authentication.
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
extensionName | string | Fully qualified name of the extension | path | required |
version | string | Version of the extension release | path | required |
body | ExtensionReleaseNotes | The JSON body of the request. Contains the markdown for release notes | body | optional |
Request body objects
The ExtensionReleaseNotes
object
Releases notes for an extension.
Element | Type | Description | Required |
---|---|---|---|
markdown | string | Release notes in markdown format | optional |
Request body JSON model
This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.
1{2 "markdown": "string"3}
Response
Response codes
Code | Type | Description |
---|---|---|
204 | - | Extension release notes updated |
400 | ErrorEnvelope | Bad request |
404 | ErrorEnvelope | Not found |
503 | ErrorEnvelope | Unavailable |