Get all future pickups a user has registered.
Samples
cURL
curl -X GET http://localhost/api/pickup/registered
JavaScript
fetch("http://localhost/api/pickup/registered")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/pickup/registered");
Python
import requests
response = requests.get("http://localhost/api/pickup/registered")
print(response.json())