---
title: "Get Global Config token meta data"
method: GET
path: "/v1/global-config/{edgeConfigId}/token/{token}"
tags: ["global-config"]
---

# Get Global Config token meta data

`GET /v1/global-config/{edgeConfigId}/token/{token}`

Return meta data about a Global Config token.

## Path parameters

- `edgeConfigId` string, required
- `token` string, required

## Query parameters

- `teamId` string
- `slug` string

## Response `200`

The Global Config.

- EdgeConfigToken — The Global Config.
  - `partialToken` string, required — A partially-masked representation of the token, safe to display in UIs. The format is the first 3 characters of the token followed by a fixed 8-character `*` mask (e.g. `550e8400-e29b-41d4-a716-446655440000` → `550********`). The mask length is intentionally fixed (not proportional to the original token length) to avoid leaking the token length. Prefer this field for display/reference in UIs and logs. The full, plaintext token is only disclosed once at creation time via `POST /v1/edge-config/:edgeConfigId/token`; use `id` to reference a token in subsequent calls (e.g. when deleting).
  - `label` string, required
  - `id` string, required — This is not the token itself, but rather an id to identify the token by
  - `edgeConfigId` string, required
  - `createdAt` number, required
  - `token` string — Deprecated: the full, plaintext token. - Returned once by `POST /v1/edge-config/:edgeConfigId/token` (create). - Still returned by `GET /v1/edge-config/:edgeConfigId/token/:token` (detail) for backwards compatibility, but scheduled for removal. - **Not** returned by `GET /v1/edge-config/:edgeConfigId/tokens` (list); use `partialToken` for display and `id` to reference tokens. Do not rely on this field being present on read operations. Prefer `partialToken` for display and `id` for references.

## Other responses

- `400` — One of the provided values in the request query is invalid.
- `401` — The request is not authorized.
- `403` — You do not have permission to access this resource.
- `404`
- `410`

---

[API](https://skmtc.net/vercel/apis/api.md) · [All operations](https://skmtc.net/vercel/apis/api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/vercel/api/versions/b4d86a3e3479/schema)
