Paedae Beacons API

The Beacons API from Paedae — 9 operation(s) for beacons.

Operations 9

GET /beacons Get all beacons (supports filtering and pagination) #
POST /beacons Activate beacon #
GET /beacons/{factoryId} Get beacon by factory ID #
PUT /beacons/{factoryId} Update beacon metadata #
DELETE /beacons/{factoryId} Deactivate beacon #
GET /beacons/{factoryId}/configuration Get beacon configuration #
GET /beacons/{factoryId}/tags Get beacon tags #
POST /beacons/{factoryId}/tags Create beacon tags #
DELETE /beacons/{factoryId}/tags Delete beacon tags #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/paedae-beacons-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

paedae-beacons-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gimbal REST Applications Beacons API
  version: v2
  description: 'The Gimbal REST API manages proximity and location assets for the Gimbal platform operated by Paedae/Infillion: applications, places (geofences and beacons), beacons and their configurations, and communications (notifications and triggers). All requests and responses use JSON.'
  contact:
    name: Gimbal Support
    url: https://support.gimbal.com/hc/en-us/
  license:
    name: Proprietary
servers:
- url: https://manager.gimbal.com/api
  description: Gimbal Manager API
security:
- OrganizationServerApiKey: []
tags:
- name: Beacons
paths:
  /beacons:
    get:
      tags:
      - Beacons
      operationId: listBeacons
      summary: Get all beacons (supports filtering and pagination)
      responses:
        '200':
          description: Success
        '401':
          $ref: '#/components/responses/Unauthorized'
      parameters:
      - name: name
        in: query
        description: Filter by name (partial match).
        schema:
          type: string
      - name: page
        in: query
        description: Page of results to return. If per_page is given but page is not, page defaults to 1.
        schema:
          type: integer
      - name: per_page
        in: query
        description: Number of items per page. If page is given but per_page is not, per_page defaults to 50. Pagination is only performed when page or per_page is sent.
        schema:
          type: integer
          default: 50
    post:
      tags:
      - Beacons
      operationId: activateBeacon
      summary: Activate beacon
      responses:
        '200':
          description: Success
        '422':
          $ref: '#/components/responses/Unprocessable'
  /beacons/{factoryId}:
    parameters:
    - name: factoryId
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Beacons
      operationId: getBeacon
      summary: Get beacon by factory ID
      responses:
        '200':
          description: Success
        '404':
          $ref: '#/components/responses/NotFound'
    put:
      tags:
      - Beacons
      operationId: updateBeacon
      summary: Update beacon metadata
      responses:
        '200':
          description: Success
        '404':
          $ref: '#/components/responses/NotFound'
    delete:
      tags:
      - Beacons
      operationId: deactivateBeacon
      summary: Deactivate beacon
      responses:
        '200':
          description: Success
        '404':
          $ref: '#/components/responses/NotFound'
  /beacons/{factoryId}/configuration:
    parameters:
    - name: factoryId
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Beacons
      operationId: getBeaconConfiguration
      summary: Get beacon configuration
      responses:
        '200':
          description: Success
        '404':
          $ref: '#/components/responses/NotFound'
  /beacons/{factoryId}/tags:
    parameters:
    - name: factoryId
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Beacons
      operationId: getBeaconTags
      summary: Get beacon tags
      responses:
        '200':
          description: Success
    post:
      tags:
      - Beacons
      operationId: createBeaconTags
      summary: Create beacon tags
      responses:
        '200':
          description: Success
    delete:
      tags:
      - Beacons
      operationId: deleteBeaconTags
      summary: Delete beacon tags
      responses:
        '200':
          description: Success
components:
  responses:
    NotFound:
      description: Resource Not Found (404)
    Unauthorized:
      description: Unauthorized (401)
    Unprocessable:
      description: Unprocessable Entity (422)
  securitySchemes:
    OrganizationServerApiKey:
      type: apiKey
      in: header
      name: Authorization
      description: 'Organization server API key passed as `Authorization: Token token=my_organization_server_api_key`.'
    ProximityOAuth2:
      type: oauth2
      description: Some Proximity APIs require an OAuth 2.0 access token instead of the organization server API key.
      flows:
        authorizationCode:
          authorizationUrl: https://manager.gimbal.com/oauth/authorize
          tokenUrl: https://manager.gimbal.com/oauth/token
          scopes: {}