Skip to main content
PUT
/
core
/
v3
/
configurations
/
available-check-origin
Create or update available check origins configuration
curl --request PUT \
  --url https://api-{region}.sesametime.com/core/v3/configurations/available-check-origin \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "entityReference": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "type": "employee"
  },
  "availableCheckOrigins": [
    "web",
    "mobile",
    "wall",
    "watch"
  ]
}
'
This response has no body data.

Authorizations

Authorization
string
header
required

API token obtained from Sesame HR Dashboard > Settings > Integrations > API

Body

application/json

Available check origins configuration

entityReference
object
required

Reference to the entity (employee or company)

availableCheckOrigins
enum<string>[]
required

List of allowed check origins

Available options:
web,
mobile,
wall,
watch
Example:
["web", "mobile", "wall", "watch"]

Response

204 - undefined