Skip to main content

API

Download OpenAPI specification:Download

Get all lobbies

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Create lobby

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Request Body schema: application/json
name
string
description
string
omitMainLobbyLink
boolean
showPosInQ
boolean
playQJoinSound
boolean
agentIds
Array of numbers
guestIds
Array of numbers

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "description": "string",
  • "omitMainLobbyLink": true,
  • "showPosInQ": true,
  • "playQJoinSound": true,
  • "agentIds": [
    ],
  • "guestIds": [
    ]
}

Response samples

Content type
application/json
{
  • "id": 0
}

Get one lobby

path Parameters
lobbyId
required
string

Lobby ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Response samples

Content type
application/json
{
  • "id": 0,
  • "name": "string",
  • "url": "string",
  • "description": "string",
  • "showPosInQ": true,
  • "playQJoinSound": true,
  • "agents": [
    ],
  • "guests": [
    ]
}

Edit a lobby

path Parameters
lobbyId
required
string

Lobby ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Request Body schema: application/json
name
string
description
string
omitMainLobbyLink
boolean
showPosInQ
boolean
playQJoinSound
boolean
agents
Array of numbers
guests
Array of numbers

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "description": "string",
  • "omitMainLobbyLink": true,
  • "showPosInQ": true,
  • "playQJoinSound": true,
  • "agents": [
    ],
  • "guests": [
    ]
}

Delete a lobby

path Parameters
lobbyId
required
string

Lobby ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Get all agents

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Create an agent

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Request Body schema: application/json
email
string
firstName
string
lastName
string
ssn
string
hsaid
string
role
string
lobbies
Array of numbers

Responses

Request samples

Content type
application/json
{
  • "email": "string",
  • "firstName": "string",
  • "lastName": "string",
  • "ssn": "string",
  • "hsaid": "string",
  • "role": "string",
  • "lobbies": [
    ]
}

Response samples

Content type
application/json
{
  • "id": 0
}

Get one agent

path Parameters
agentId
required
string

Agent ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Response samples

Content type
application/json
{
  • "id": 0,
  • "email": "string",
  • "firstName": "string",
  • "lastName": "string",
  • "ssn": "string",
  • "hsaid": "string",
  • "role": "string",
  • "lobbies": [
    ]
}

Edit an agent

path Parameters
agentId
required
string

Agent ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Request Body schema: application/json
email
string
firstName
string
lastName
string
ssn
string
hsaid
string
role
string
lobbies
Array of numbers

Responses

Request samples

Content type
application/json
{
  • "email": "string",
  • "firstName": "string",
  • "lastName": "string",
  • "ssn": "string",
  • "hsaid": "string",
  • "role": "string",
  • "lobbies": [
    ]
}

Delete an agent

path Parameters
agentId
required
string

Agent ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Add an agent to a lobby

path Parameters
agentId
required
string

Agent ID

lobbyId
required
string

Lobby ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Remove an agent from a lobby

path Parameters
agentId
required
string

Agent ID

lobbyId
required
string

Lobby ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Get all guests

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Create guest

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Request Body schema: application/json
email
string
firstName
string
lastName
string
phone
string
agentId
number
lobbies
Array of numbers

Responses

Request samples

Content type
application/json
{
  • "email": "string",
  • "firstName": "string",
  • "lastName": "string",
  • "phone": "string",
  • "agentId": 0,
  • "lobbies": [
    ]
}

Response samples

Content type
application/json
{
  • "id": 0
}

Get one guest

path Parameters
guestId
required
string

Guest ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Response samples

Content type
application/json
{
  • "id": 0,
  • "email": "string",
  • "firstName": "string",
  • "lastName": "string",
  • "phone": "string",
  • "lobbies": [
    ],
  • "owners": [
    ]
}

Edit a guest

path Parameters
guestId
required
string

Guest ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Request Body schema: application/json
email
string
firstName
string
lastName
string
phone
string
agentId
number
lobbies
Array of numbers

Responses

Request samples

Content type
application/json
{
  • "email": "string",
  • "firstName": "string",
  • "lastName": "string",
  • "phone": "string",
  • "agentId": 0,
  • "lobbies": [
    ]
}

Delete a guest

path Parameters
guestId
required
string

Guest ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Get all links

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Create link

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Request Body schema: application/json
agentId
number
url
string
name
string
description
string
isLimited
boolean
validFrom
string
expiresAt
string
clicksRemaining
number

Responses

Request samples

Content type
application/json
{
  • "agentId": 0,
  • "url": "string",
  • "name": "string",
  • "description": "string",
  • "isLimited": true,
  • "validFrom": "string",
  • "expiresAt": "string",
  • "clicksRemaining": 0
}

Response samples

Content type
application/json
{
  • "id": 0
}

Get one link

path Parameters
linkId
required
string

Link ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses

Response samples

Content type
application/json
{
  • "id": 0,
  • "url": "string",
  • "name": "string",
  • "description": "string",
  • "createdBy": "string",
  • "validFrom": "string",
  • "expiresAt": "string",
  • "clicksRemaining": 0
}

Edit a link

path Parameters
linkId
required
string

Link ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Request Body schema: application/json
agentId
number
url
string
name
string
description
string
isLimited
boolean
validFrom
string
expiresAt
string
clicksRemaining
number

Responses

Request samples

Content type
application/json
{
  • "agentId": 0,
  • "url": "string",
  • "name": "string",
  • "description": "string",
  • "isLimited": true,
  • "validFrom": "string",
  • "expiresAt": "string",
  • "clicksRemaining": 0
}

Delete a link

path Parameters
linkId
required
string

Link ID

query Parameters
organisationName
required
string

The short name for the organisation

header Parameters
Authorization
required
string

The authorization header containing your API key in the format: Bearer <API key>.

X-Secret
required
string

The API secret key associated with your account.

Responses