v1

latestOpenAPI 3.1.02026-07-226875162.5 KB
Note Share Link

Get Share Link

Retrieve the current share link for a note.

  • Returns 404 if no share link exists
  • sharePassword is always null for security
get/v1/external/notes/{noteGuid}/share-link

Path parameters

noteGuidstring required

Note GUID

Response

Share link details

shareIdstring required

Unique share link identifier

shareUrlstring uri required

Full URL for accessing the shared note

sharePasswordstring nullable

Share link password.

  • Only returned on PUT with usePassword: true
  • Always null in GET responses
hasPasswordboolean required

Whether the share link has a password

Example response

{
  "shareId": "LHr1bHvCCdVCG",
  "shareUrl": "https://tiro.ooo/s/LHr1bHvCCdVCG",
  "sharePassword": "a1b2c3d4",
  "hasPassword": true
}