Returns all bells for the current user.
GET
/api/bellsAuthorizations
api_key
Type: API Key (header: X-CSRF-Token)
Parameters
Query Parameters
limit
How many bells to return.
Typestring
offset
Offset for returned bells.
Typestring
Responses
Success.
Authorization
api_key
Variables
Key
Value
limit
offset
cURL
curl -X GET \
'http://localhost/api/bells'
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())