curl --request POST \
--url https://api.qminder.com/locations \
--header 'Content-Type: application/json' \
--header 'X-Qminder-API-Version: <x-qminder-api-version>' \
--header 'X-Qminder-REST-API-Key: <api-key>' \
--data '
{
"name": "SF City Hall",
"latitude": 37.7792792,
"longitude": -122.4214304,
"address": "1 Dr Carlton B Goodlett Pl, San Francisco, CA 94102, United States",
"country": "US",
"languages": [
"en",
"et",
"fr-CA"
],
"inputFields": [
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"type": "FIRST_NAME",
"isMandatoryBeforeAdded": false,
"isMandatoryBeforeServed": false,
"isMandatoryInRemoteSignIn": false,
"isVisibleInWaitingDrawer": true,
"isVisibleInServingDrawer": true,
"showInRemoteSignIn": true
},
{
"id": "550e8400-e29b-41d4-a716-446655440002",
"type": "LAST_NAME",
"isMandatoryBeforeAdded": false,
"isMandatoryBeforeServed": false,
"isMandatoryInRemoteSignIn": false,
"isVisibleInWaitingDrawer": true,
"isVisibleInServingDrawer": true,
"showInRemoteSignIn": true
},
{
"id": "550e8400-e29b-41d4-a716-446655440003",
"type": "TEXT",
"title": "Reason for visit",
"isMandatoryBeforeAdded": true,
"isMandatoryBeforeServed": false,
"isMandatoryInRemoteSignIn": false,
"isVisibleInWaitingDrawer": true,
"isVisibleInServingDrawer": true,
"showInRemoteSignIn": true
}
],
"openingHours": {
"regular": {
"mon": {
"businessHours": [
{
"opens": {
"hours": 9,
"minutes": 0
},
"closes": {
"hours": 17,
"minutes": 0
}
}
]
},
"tue": {
"businessHours": [
{
"opens": {
"hours": 9,
"minutes": 0
},
"closes": {
"hours": 17,
"minutes": 0
}
}
]
},
"wed": {
"businessHours": [
{
"opens": {
"hours": 9,
"minutes": 0
},
"closes": {
"hours": 17,
"minutes": 0
}
}
]
},
"thu": {
"businessHours": [
{
"opens": {
"hours": 9,
"minutes": 0
},
"closes": {
"hours": 17,
"minutes": 0
}
}
]
},
"fri": {
"businessHours": [
{
"opens": {
"hours": 9,
"minutes": 0
},
"closes": {
"hours": 17,
"minutes": 0
}
}
]
},
"sat": {
"closed": true
},
"sun": {
"closed": true
}
},
"exceptions": [
{
"date": "2026-05-01",
"closed": true,
"closedReason": "Holiday"
}
]
}
}
'