curl --request POST \
--url https://app.untetherlabs.com/api/v1/appointments/slots \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"appointmentTypeId": "<string>",
"startDate": "2024-11-20T07:43:34+0000",
"endDate": "2024-11-20T07:43:34+0000",
"requirements": {
"providerIds": [
"<string>"
],
"skill": {
"type": "equal",
"skill": "<string>",
"value": "<string>"
}
},
"preferences": {
"providerIds": [
"<string>"
],
"skill": {
"type": "equal",
"skill": "<string>",
"value": "<string>"
}
},
"limit": 10
}
'