---
title: "Update an Existing Link"
method: PUT
path: "/links/{id}"
---

# Update an Existing Link

`PUT /links/{id}`

This endpoint updates an existing link owned by a client.

## Path parameters

- `id` integer, required

## Request body

- object
  - `name` string, required — The name used to easily identify the link. Allowed values are between 2 and 255 characters.
  - `status` string, required — The status of the link. Allowed values are active and inactive.
  - `path` string, required — The path used to identify the the link to be redirected. Value after the root of the domain. Must be unique.
  - `redirect` string, required — The URL (with schema) to redirect visitors to when visiting the specified path.
  - `domain_id` integer, required — The Domain ID the link will be associated with.
  - `tags` integer[] — Array of Tag IDs that will be associated with the link.

## Response `201`

201

- object
  - `id` integer
  - `name` string
  - `path` string
  - `redirect` string
  - `status` string
  - `health_status` string
  - `health_checked_at` unknown
  - `domain_id` integer
  - `generated_url` string
  - `domain` object
    - `id` integer
    - `name` string
    - `url` string
    - `status` string
    - `scope` string
    - `default_root_url` unknown
    - `default_catchall_url` unknown

## Other responses

- `422` — 422

---

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