Share
Why it matters: Let agents and humans access a specific artifact without handing over the API key.
Signed links and email-based sharing for artifacts and (future) runs.
API endpoints
| Method | Path | Description |
|---|---|---|
POST | /v1/artifacts/:id/links | Create a signed link |
POST | /v1/artifacts/:id/share | Share by email |
Examples
Share by email
curl -X POST https://cloudharness.ai/v1/artifacts/ARTIFACT_ID/share \
-H "Authorization: Bearer $KEY" \
-H "Content-Type: application/json" \
-d '{"email":"alice@example.com"}'