Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Creates new or updates ticket and returns ticket information. Sends information about the ticket to client (device) associated with this session id.

Body parameters:

Name

Type

Description

session

guid, required

Device session information, received from Virtual Queues services.

position

optional, object

Ticket information, can contain:

  • customerInfo - string[], optional, see example

  • id - guid, optional, should be specified if this is an update

Auth:

ApiKey header

Request:

Code Block
curl --location --request POST 'https://ombori-queue-dev.azure-api.net/api/organizations/xyz/queues/c179a3a2-9fd7-4e12-96e7-19d9e957e094/join' \
--header 'ApiKey: XYZ' \
--header 'Content-Type: application/json' \
--data-raw '{
	"session": "foo",
	"position": {
		"id": "5387920d-dfdd-4904-8a51-3f007effcffa",
        "customerInfo": [
            "Jörgen",
            "Svensson",
            "2200001910105"
       ]
    }
}'

...