...
Schema for creating is the the same as for Create time slot reservation .
Auth:
ApiKey header (organisational key)
...
Code Block |
---|
curl --location --request POSTPATCH 'https://ombori-queue-qa.azure-api.net/api/organizations/{organizationName}/queues/{queueId}/reservations/update{positionId}' \ --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", } }' |
...