Skip to main content
Creates a link between an Aether project and a Sentry project. This enables Sentry error context to be available to agents working on the linked project.

Authentication

Requires a valid Bearer token. Requires an active Sentry connection.

Request Body

project_id
string
required
Aether project ID (UUID).
sentry_project_id
string
required
Sentry project ID.
{
  "project_id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
  "sentry_project_id": "123456"
}

Response

id
string
required
Link ID (UUID).
project_id
string
required
Aether project ID.
sentry_project_id
string
required
Sentry project ID.
sentry_project_slug
string
required
Sentry project slug.
created_at
string
required
ISO 8601 timestamp.
{
  "id": "e5f6a7b8-9012-34ab-cdef-567890123def",
  "project_id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
  "sentry_project_id": "123456",
  "sentry_project_slug": "my-app",
  "created_at": "2025-01-15T10:30:00Z"
}

Errors

StatusDescription
400Bad Request — missing required fields
401Unauthorized — missing or invalid token
403Forbidden — no Sentry connection
404Not Found — Aether project or Sentry project does not exist
409Conflict — link already exists