Returns all bells for the current user.
GET
/api/bellsAuthorizations
Parameters
Query Parameters
limit
How many bells to return.
Typeinteger
offset
Offset for returned bells.
Typeinteger
Responses
Successful
Samples
cURL
curl -X GET http://localhost/api/bells
JavaScript
fetch("http://localhost/api/bells")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/bells");
Python
import requests
response = requests.get("http://localhost/api/bells")
print(response.json())