/environments/batch-assign-tags
Batch assign tags to environments.
Overview
| Field | Value |
|---|---|
| Method | POST |
| Path | /environments/batch-assign-tags |
Request Body
{
"envUuids": ["ENV_UUID_1"],
"tagUuids": ["TAG_UUID_1"]
}cURL Example
curl -X POST http://127.0.0.1:{port}/api/local/environments/batch-assign-tags
-H "Content-Type: application/json"
-H "sp-api-key: YOUR_LOCAL_API_KEY"
-d '{
"envUuids": ["ENV_UUID_1"],
"tagUuids": ["TAG_UUID_1"]
}'