Labels auflisten
curl --request GET \
--url https://app.famulor.de/api/user/labelsimport requests
url = "https://app.famulor.de/api/user/labels"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.famulor.de/api/user/labels', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.famulor.de/api/user/labels",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.famulor.de/api/user/labels"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.famulor.de/api/user/labels")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.famulor.de/api/user/labels")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": [
{ "id": 3, "name": "Inbound", "color": "green", "assistants_count": 7 },
{ "id": 5, "name": "Outbound", "color": "blue", "assistants_count": 2 }
],
"current_page": 1,
"per_page": 15,
"total": 2
}
Labels
Labels auflisten
Labels in deinem Konto auflisten
GET
/
api
/
user
/
labels
Labels auflisten
curl --request GET \
--url https://app.famulor.de/api/user/labelsimport requests
url = "https://app.famulor.de/api/user/labels"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.famulor.de/api/user/labels', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.famulor.de/api/user/labels",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.famulor.de/api/user/labels"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.famulor.de/api/user/labels")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.famulor.de/api/user/labels")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": [
{ "id": 3, "name": "Inbound", "color": "green", "assistants_count": 7 },
{ "id": 5, "name": "Outbound", "color": "blue", "assistants_count": 2 }
],
"current_page": 1,
"per_page": 15,
"total": 2
}
Famulor 1.0 API (Legacy). Diese Seite gilt nur für Famulor 1.0 (
app.famulor.de) und bleibt aus Kompatibilitätsgründen erhalten. Für die aktuelle Plattform nutze die Famulor 2.0 API-Referenz.Query-Parameter
integer
Anzahl der Labels pro Seite (1-100, Standard: 15)
integer
Seitennummer (Standard: 1)
Antwort-Felder
array
{
"data": [
{ "id": 3, "name": "Inbound", "color": "green", "assistants_count": 7 },
{ "id": 5, "name": "Outbound", "color": "blue", "assistants_count": 2 }
],
"current_page": 1,
"per_page": 15,
"total": 2
}
⌘I