Versions Compared

Key

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

...

Code Block
curl --location --request POST 'https://ombori-queue-qa.azure-api.net/api/organizations/{organizationName}/queues/{queueId}/reservations/update' \
--header 'Content-Type: application/json' \
--header 'ApiKey: XYZ' \
--data-raw '{
    "locale": "en",
    "notification": {
        "type": "phoneNumber",
        "settings": {
            "to": "+48000"
        }
    },
    "customerInfo": ["Firstname Lastname"],
    "numberOfPeople": 2,
    "booking": {
        "start": "2020-11-30T14:40:00.000Z",
        "end": "2020-11-30T14:45:00.000Z",
        "virtualAppointment": {
          "isEnabled": true
        }
    },
    "customData": {
      "internalIdOrAnyOtherField": "foo",
    }
}'

...