---
title: "List tags"
method: GET
path: "/tags"
tags: ["Tag"]
---

# List tags

`GET /tags`

Retrieves a list of tags for the customer.

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

A list of tags.

- object
  - `next_page_token` string — Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.
  - `result` TagManagerTag[]
    - `id` string, uuid — The unique identifier of the tag. Returned from the `POST /tags` or `GET /tags` response.
    - `customer_id` string, uuid — The unique identifier of the customer who owns this tag. Returned from the `GET /customers` response.
    - `name` string — The name of the tag.
    - `detail` string — The details about the tag.
    - `tm_create` string, date-time — Timestamp when the tag was created.
    - `tm_update` string, date-time — Timestamp when the tag was last updated.
    - `tm_delete` string, date-time — Timestamp when the tag was deleted.

## Other responses

- `401` — Authentication required (UNAUTHENTICATED).
- `500` — Internal error (INTERNAL).

---

[API](https://skmtc.dev/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.dev/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/revisions/48dafc7da0a6/schema)
