Frontu API Sandbox
ClientApi/Note
Get Note
1min
GET
https://dev1.frontu.com//client/api/v2/notes/{guid}
This endpoind allows to return one note information
Authentication
Authorization
apiKey
Path Parameters
guid
string
*
Query Parameters
guid
string
*
Responses
200
Returned when successful
object
version
integer
title
string
visible
boolean
image
string
task
string
taskTemplate
string
user
string
workspace
string
guid
string
created
string
updated
string
deleted
boolean
systemId
string
404
Entity not found
Curl
JS
Ruby
Python
1curl --location --globoff 'https://dev1.frontu.com//client/api/v2/notes/{guid}?guid=string' \
2--header 'Accept: application/json' \
3--header 'Content-Type: application/json'
Responses
200
404
1// Returned when successful
2{
3 "version": 0,
4 "title": "",
5 "visible": false,
6 "image": "",
7 "task": "",
8 "taskTemplate": "",
9 "user": "",
10 "workspace": "",
11 "guid": "",
12 "created": "",
13 "updated": "",
14 "deleted": false,
15 "systemId": ""
16}
Updated 18 Apr 2025
Did this page help you?