API Endpoint
{{apiUrl}}/api/v1/properties/environment/{{environmentIdentifier}}
Headers
To authenticate the API request, you need to provide the Vansah Connect Token that is generated from the Jira workspace's Vansah configuration page.
Authorization | {{vansahConnectToken}}
|
Path Parameter
environmentIdentifier (String, Required): The unique identifier (GUID) of the environment to be removed.
Request Body Parameter
project (Object, Required): Contains project-related details.
key (String, Required): Workspace project key (e.g., "DEMO").
Request JSON Example
{
"project": {
"key": "{{projectKey}}" // Required when using Vansah connect API token
}
}
Response JSON Example
{
"success": true,
"message": "Environment is Removed successfully",
"data": {
"identifier": "f94d0e7d-1edb-11ed-bdf2-ae827922bf87",
"name": "UAT"
}
}