Get environment tags

Retrieve all unique tags used in workflows within the specified environment. These tags can be used for filtering workflows.

GET
/v2/environments/{environmentId}/tags

Authorization

Authorization<token>

API key authentication. Allowed headers-- "Authorization: ApiKey <api_key>".

In: header

Path Parameters

environmentIdRequiredstring

Environment internal ID (MongoDB ObjectId) or identifier

Header Parameters

idempotency-keystring

A header for idempotency purposes

Response Body

OK

responseRequiredarray<object>
export type Response = GetEnvironmentTagsDto[];
 
export interface GetEnvironmentTagsDto {
  name: string;
}
 
curl -X GET "https://api.novu.co/v2/environments/6615943e7ace93b0540ae377/tags" \
  -H "idempotency-key: string" \
  -H "Authorization: <token>"
[
  {
    "name": "string"
  }
]

On this page

No Headings
Edit this page on GitHub