API for queues

Access and control queue-related functions through the GraphQL API using the Kryon endpoint. These APIs allow you to interact with queues, enabling operations such as retrieving queue information, accessing queue items, and performing actions on queue items.

Before you begin:

  • Learn the fundamentals of GraphQL, the query language used to request and manage data through the Kryon public API.

  • Understand how to create effective queries and mutations to make requests and interact with the API.

  • Learn how to get and authenticate an access token.

  • Discover and understand the available endpoints.

Schema overview

The GraphQL API schema is a blueprint outlining the structure and functionality of the public APIs. The schema provides a clear overview of available data types, queries, and mutations, offering a foundation for understanding how to interact with the APIs effectively.

In GraphQL, using square brackets [ ] indicates a list, and the exclamation mark ! means non-nullable.

[Status!]!: The outer ! ensures that the API always returns a list (even if it's empty), and that the returned list will not be null.

Status!: The inner ! ensures that each element within the list is a non-nullable Status object. This guarantees that there won't be null values within the list, and any attempt to include null values would result in a failed query.

API requests

The following API requests provide the ability to manage queues using the Kryon endpoint: