GET /projects/{projectId}/beacons

Authentication

API Key (header: X-API-Key)

Path Parameters

projectId string required path

Responses

200 List of beacons

No response body

curl -X GET 'https://api.rogeriq.com/api/v1/projects/string/beacons' \  -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://api.rogeriq.com/api/v1/projects/string/beacons', {  method: 'GET',  headers: {      "Authorization": "Bearer YOUR_API_TOKEN"  }});const data = await response.json();console.log(data);
import requestsheaders = {    'Authorization': 'Bearer YOUR_API_TOKEN'}response = requests.get('https://api.rogeriq.com/api/v1/projects/string/beacons', headers=headers)print(response.json())
Ask a question... ⌘I