Breadcrumbs

Core API mit Custom Connectors abfragen

Um eine Blink Core API mit Authentifizierung aufzurufen, übergebt das ID-Token der Authentifizierungsabfrage als Query-Parameter „api_key" in der Endpunkt-Anfrage.

Achtung: Passt die Host-Adresse für euer Blink-System in der Definitionsdatei vor dem Import oder nach dem Import in eurem Custom Connector an!

YAML
swagger: '2.0'
info:
  title: Blink Core Power App
  description: Use the Blink Core API Power App to access APIs of Blink Core.
  version: 1.0.0
host: spielwiese-api.blink.online
basePath: /
schemes:
  - https
consumes: []
produces: []
paths:
  /odata/v2/Locations:
    get:
      responses:
        default:
          description: default
          schema: {}
      operationId: BlinkCoreApiGetLocations
      summary: Blink Get Locations
      parameters:
        - name: api_key
          in: query
          required: true
          type: string
          x-ms-visibility: important
definitions: {}
parameters: {}
responses: {}
securityDefinitions: {}
security: []
tags: []