A successful release to this endpoint unlinks a run configuration from a release. This method returns the updated run configuration details.
Request
This request uses the POST
method, which is used to unlink a run configuration object from a specific release. A successful request removes the association and returns the updated run configuration details.
For basic authorization, replace this with your actual username and password (or API key) in the header request in the username:password
or username:api_key format
. Your credentials are combined to form a Base64-encoded string for authentication.
The request data is provided as a JSON object.
You need to provide the following required path parameters:
id
: The unique identifier of the run configuration to be unlinked from the release.
This request does not require additional query or body parameters.
Response
A successful response includes the updated run configuration details, showing that it is no longer linked to a release.
{
"id": 12345,
"name": "Daily Regression Test",
"release": null,
"status": "unlinked",
"updatedAt": "2025-01-17T14:00:00Z"
}
Try it!
- Provide the required parameters and values below (click the dropdown and plus icons):
- Select the language in Language.
- Enter your user name or API credentials.
- Review your API call and click Try it!