Beeye GraphQL API Server
GraphQL endpoint: /graphql. Use a tool like Insomnia to send requests.
Authentication: send the Authorization header with basic scheme and your API key, e.g. Authorization: basic YourApiKey. You can get your API key in Beeye from your profile page.
Check if you're connected
- Send a POST request to
/graphql. - Set header
Authorization: basic YourApiKeyandContent-Type: application/json. - Use the request body below (GraphQL query in a
queryfield).
GraphQL query
query {
company {
id
name
}
}
Request body (ready to POST)
{
"query": "query { company { id name } }"
}
If you get back your company id and name, you're connected. For more queries and examples, see the Documentation.