# List Pipeline Tags

<Heading
  as={"h1"}
  className={"openapi__heading"}
  children={"List Pipeline Tags"}
>
</Heading>

<MethodEndpoint
  method={"get"}
  path={"/api/v1/workspaces/{workspace_name}/pipeline-tags"}
  context={"endpoint"}
>
  
</MethodEndpoint>

List distinct tag strings attached to pipelines in this workspace.

Returns tag names currently in use, suitable for autocomplete when adding tags.
Use the ``name`` query parameter for case-insensitive substring search.
Use ``order`` to control alphabetical sort direction (default ascending).

To filter the pipelines list by tag, use ``GET .../pipelines`` with repeated
``tags`` query parameters; matching is case-insensitive and uses OR semantics.

<Heading
  id={"request"}
  as={"h2"}
  className={"openapi-tabs__heading"}
  children={"Request"}
>
</Heading>

<ParamsDetails
  parameters={[{"description":"Type the name of the workspace.","in":"path","name":"workspace_name","required":true,"schema":{"description":"Type the name of the workspace.","title":"Workspace Name","type":"string"}},{"description":"Case-insensitive substring filter on tag names. Use for autocomplete when selecting tags.","in":"query","name":"name","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Case-insensitive substring filter on tag names. Use for autocomplete when selecting tags.","title":"Name"}},{"description":"Sort distinct tag names alphabetically in ascending or descending order.","in":"query","name":"order","required":false,"schema":{"default":"ASC","description":"Sort distinct tag names alphabetically in ascending or descending order.","enum":["ASC","DESC"],"title":"Order","type":"string"}}]}
>
  
</ParamsDetails>

<RequestSchema
  title={"Body"}
  body={undefined}
>
  
</RequestSchema>

<StatusCodes
  id={undefined}
  label={undefined}
  responses={{"200":{"content":{"application/json":{"schema":{"items":{"type":"string"},"title":"Response List Pipeline Tags Api V1 Workspaces  Workspace Name  Pipeline Tags Get","type":"array"}}},"description":"Successful Response"},"422":{"content":{"application/json":{"schema":{"properties":{"detail":{"items":{"properties":{"ctx":{"title":"Context","type":"object"},"input":{"title":"Input"},"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"title":"Location","type":"array"},"msg":{"title":"Message","type":"string"},"type":{"title":"Error Type","type":"string"}},"required":["loc","msg","type"],"title":"ValidationError","type":"object"},"title":"Detail","type":"array"}},"title":"HTTPValidationError","type":"object"}}},"description":"Validation Error"}}}
>
  
</StatusCodes>
