Skip to main content
POST
/
v1
/
external
/
notes
/
guids
Reserve Note GUID
curl --request POST \
  --url https://api.tiro.ooo/v1/external/notes/guids \
  --header 'Authorization: Bearer <token>'
{
  "guid": "x6DjzdpXqkEcU",
  "expiresAt": "2024-01-15T11:30:00Z",
  "createdAt": "2024-01-15T10:30:00Z"
}

Authorizations

Authorization
string
header
required

API key in format {id}.{secret}

Response

Note GUID successfully reserved

guid
string
required

Reserved note GUID that can be used for note creation

Example:

"x6DjzdpXqkEcU"

expiresAt
string<date-time>
required

ISO-8601 timestamp when the reservation expires (1 hour from creation)

Example:

"2024-01-15T11:30:00Z"

createdAt
string<date-time>
required

ISO-8601 timestamp when the reservation was created

Example:

"2024-01-15T10:30:00Z"