List notes
curl --request GET \
--url https://audream-api.tulingbc.com/v1/notes \
--header 'Authorization: Bearer <token>'import requests
url = "https://audream-api.tulingbc.com/v1/notes"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://audream-api.tulingbc.com/v1/notes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import Foundation
let url = URL(string: "https://audream-api.tulingbc.com/v1/notes")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.timeoutInterval = 10
request.allHTTPHeaderFields = ["Authorization": "Bearer <token>"]
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))val client = OkHttpClient()
val request = Request.Builder()
.url("https://audream-api.tulingbc.com/v1/notes")
.get()
.addHeader("Authorization", "Bearer <token>")
.build()
val response = client.newCall(request).execute(){
"items": [
{
"note_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"status": "<string>",
"has_transcription": true,
"has_insights": true,
"created_at": 123,
"updated_at": 123,
"error": "<string>",
"folder_id": "<string>",
"is_trashed": true,
"template_id": "<string>"
}
]
}{
"detail": "<string>"
}Notes
List notes
Lists non-deleted notes owned by the authenticated account. Result bodies are omitted from this summary response.
GET
https://audream-api.tulingbc.com
/
v1
/
notes
List notes
curl --request GET \
--url https://audream-api.tulingbc.com/v1/notes \
--header 'Authorization: Bearer <token>'import requests
url = "https://audream-api.tulingbc.com/v1/notes"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://audream-api.tulingbc.com/v1/notes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import Foundation
let url = URL(string: "https://audream-api.tulingbc.com/v1/notes")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.timeoutInterval = 10
request.allHTTPHeaderFields = ["Authorization": "Bearer <token>"]
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))val client = OkHttpClient()
val request = Request.Builder()
.url("https://audream-api.tulingbc.com/v1/notes")
.get()
.addHeader("Authorization", "Bearer <token>")
.build()
val response = client.newCall(request).execute(){
"items": [
{
"note_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"status": "<string>",
"has_transcription": true,
"has_insights": true,
"created_at": 123,
"updated_at": 123,
"error": "<string>",
"folder_id": "<string>",
"is_trashed": true,
"template_id": "<string>"
}
]
}{
"detail": "<string>"
}