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>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "Weekly Team Standup"
}
'
{
  "guid": "x6DjzdpXqkEcU",
  "title": "Weekly Team Standup",
  "expiresAt": "2024-01-15T11:30:00Z",
  "createdAt": "2024-01-15T10:30:00Z"
}

Authorizations

Authorization
string
header
required

API key in format {id}.{secret}

Body

application/json

Optional parameters for the note reservation

title
string

If provided, sets the title for the note to be created.

Maximum string length: 100
Example:

"Weekly Team Standup"

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"

title
string | null

Title of the note if provided during reservation

Example:

"Weekly Team Standup"