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"
  },
  "availableCheckOrigins": [
    "web",
    "mobile",
    "wall",
    "watch"
  ]
}
'
This response has no body data.

Documentation Index

Fetch the complete documentation index at: https://apidocs.sesametime.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

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