Detta är en gammal version av dokumentet!


Orbiqs GraphQL API

Orbiqs GraphQL API nås på {Orbiqs URL}/graphql.

För att autentisera sig mot API:et krävs en giltig oauth2 token, som kan efterfrågas från {Orbiq URL}/oauth2/token. T.ex. med client_credentials

headers: {
    'Content-Type': 'application/x-www-form-urlencoded'
},
body: "grant_type=client_credentials&client_id=example&client_secret=test&scope=iqalarm";
 
// res => { "token": "abcd", "expiry": 3600 }

där client_id och client_secret är inlogg för en användare i Orbiq.

För requests till GraphQL API:et specificeras sedan autentiseringen i en header som Authorization: Bearer {token}, där {token} är ett giltigt token från Orbiq.

  • api/graphql.1683039127.txt.gz
  • Senast uppdaterad: 2023/05/02 14:52
  • av dokuadmin