SmallPlate

Link Management

List, inspect, update, and delete links

GET /{plateId}/links

Returns all links for the plate.

GET /{plateId}/links/{id}

Returns full link record including usage and metadata.

POST /{plateId}/links/{id}/update

Supports partial updates.

Example:

{
  "enabled": true,
  "max_uses": 1000,
  "expires_at": 0,
  "metadata": {
    "channel": "email"
  }
}

Update metadata only

POST /{plateId}/links/{id}/metadata

Example:

{
  "metadata": {
    "owner": "growth",
    "team": "acquisition"
  }
}
DELETE /{plateId}/links/{id}

Removes link record and global ID mapping.

On this page