Get web-Link by id

get/v1/web-links/{web_link_id}

Fetches a single web link (social link) row by id from the records pipeline, scoped to the workspace. Read-only; no side effects. 404 when absent or out of scope.

Requires a bearer token: Authorization: Bearer <token>.

Path parameters

NameTypeRequiredDescription
web_link_idstring <uuid>YesPublic UUID of the web link.e.g. 9b0c1d2e-3f40-4516-9728-3a4b5c6d7e8f

Query parameters

NameTypeRequiredDescription
workspaceIdstring <uuid>NoWorkspace to scope to; defaults to the token's workspace.e.g. 8f6b2c10-4a1e-4d2b-9c3a-1f0e7a5b6c21

Request

cURL
curl -X GET https://api.wellapp.ai/v1/web-links/{web_link_id} \
  -H "Authorization: Bearer $WELL_API_TOKEN"

Responses

200The web link row.

{
  "data": {
    "type": "social_link",
    "id": "9b0c1d2e-3f40-4516-9728-3a4b5c6d7e8f",
    "attributes": {
      "url": "https://www.linkedin.com/company/foldspace-ai",
      "platform": "linkedin"
    }
  }
}

401Unauthorized

{
  "code": "UNAUTHORIZED",
  "status": 401,
  "title": "Unauthorized",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

403Forbidden

{
  "code": "FORBIDDEN",
  "status": 403,
  "title": "Forbidden",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

404Not Found

{
  "code": "NOT_FOUND",
  "status": 404,
  "title": "Not Found",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}