Simple In/Out API v4 Documentation

Welcome to the Simple In/Out API! You can use our API to access Simple In/Out data. You can request both read and write access.

The Simple In/Out v4 API is a RESTful (mostly) API protected by OAuth 2.

Expansions

Some of our APIs allow you to include additional information. This saves on API calls, as you can retrieve related information in the primary call and avoid additional requests.

When an API supports including additional information, it does so via the expand query parameter. This is a comma-delimited list of resources to include. We support expansions via embedding directly into the payload.

The Meta object

Most API payloads include a meta object to provide additional details about the requested resource(s). This includes paging most often, and sometimes additional information about the user making the request. For some payloads there may be additional items in the meta.

Here’s an example of a meta object

{"meta": {
  "paging": {
    "page": 1,
    "page_size": 25,
    "page_count": 2,
    "count": 47,
    "previous_page": null,
    "next_page": 2,
    "first_href": "https://www.simpleinout.com/api/v4/beacons",
    "last_href": "https://www.simpleinout.com/api/v4/beacons?page=2",
    "previous_href": null,
    "next_href": "https://www.simpleinout.com/api/v4/beacons?page=2"
  },
  "last_updated_at": {
    "announcements": 1435258926,
    "beacons": 1435250484,
    "favorites": 1437151284,
    "fences": 1436546484,
    "groups": 1436287284,
    "networks": 1436287284,
    "settings": 1439916084
  },
  emergency: nil
}}

Pagination

Pagination occurs when requesting multiple objects. Information about this appears in the meta object.

Name Description
page the page number currently being returned
page_size the number of results per page
page_count the total number of pages available
count the total number of results
previous_page the number of the previous page
next_page the number of the next page
first_href the URL of the API call for the first page of results
last_href the URL of the API call for the last page of results
previous_href the URL of the API call for the page of results prior to the current page
next_href the URL of the API call for the page of results after the current page

Last Update At

The last_updated_at attribute in the meta object returns the epoch time indicating the last time certain resources have been updated. This applies to the authorized user’s company. By storing these dates, you can discover when resources have been updated without having to poll those resources on a regular basis.

If Modified Since and If None Match

Most of the GET requests to the API support the If-Modified-Since and If-None-Match headers. If these two headers are present, the GET request will only return a payload if the relevant data has been updated since the time specified in the If-Modified-Since header and the ETag in the If-None-Match header. If it has been updated since, the payload will be the same as usual. If the data has not been updated, the return will be empty with a HTTP status of 304 (Not Modified). The format of the time is in the HTTP specification, while the ETag should be the same as that returned when a request has been made previously.

When a GET API returns data, the Last-Modified header will be present providing the exact time it’s been modified. This date should be used for future If-Modified-Since requests. The ETag header will be present providing the hash value representing the returned payload. This hash should be used for future If-None-Match requests.

Range Searching

Some integer or date/time fields can be searched by using operators. This permits exact searches, as well as less than, greater than, or between. For these fields, you have an array of options.

  • For exact matches, simply include the value. Date/time fields use epoch time, so it’s almost impossible to get an exact match to the second. Examples are 18 or 1524168783.
  • For ranges based on a single value, you may prepend a symbol to the front of the value. The symbols <, >, <=, or >= are supported. Examples are <18 or >=1524168783.
  • For between range searches, the .. operator is used in between the two values. This includes the values on both ends, as well as those in between. Examples are 9..18 or 1523854800..1524459599.

Sorting

When requesting multiple objects, most of the time you’ll have some sorting options available. Sorting occurs by passing in the sort query parameter. The value is a comma-delimited string of fields in the order you wish them to be sorted. By default, all fields will sort in ascending fashion, but you can sort in descending fashion by including a - sign before the field. An example of this would be sort=name,-begin_at.

Errors

Error objects in Simple In/Out consist of three parts: code, message, and details.

  • code corresponds with those listed below. These provide context as to what type of error occurred.
  • message is an English plain-text reading of what happened. This should be used for further developer debugging, but should not be relied on to remain consistent over time. While these messages can be displayed to end-users, it is highly discouraged as they can change without notice and they are always going to be in English.
  • details provides an array of information in the case of validation failures. This will typically be populated with 5005 validation errors, though they also can appear with improperly formatted status updates (2002). The format of the objects in the array are key: value pairs, whereby key is the name of a field and value is one of a number of possible strings to indicated more specifically what was invalid with the input. Please note that while the key will typically be a parameter on the object, it can occasionally be base for errors that fail validation but don’t apply to a particular field.

An example of an error payload:

{
  "code": 5005,
  "message": "Validation Failure: Name can't be blank, UUID is invalid, Beacons exceed company limit of 100",
  "details": [
    { "name": "blank" },
    { "uuid": "invalid" },
    { "base": "greater_than" }
  ]
}

Error Codes

1002: Company is Disabled

Either the user’s company was on a trial and the trial has expired or the company has let their subscription to Simple In/Out expire. This error will present itself on almost all APIs and will return with the status code 403.


2002: Status Failure

The status update could not be completed.


3001: Device Cannot Follow Everyone and Specific Groups

This device is following everyone, so following users in a specific group is prohibited.


3002: Device Cannot Follow Everyone and Specific Users

This device is following everyone, so following a specific user is prohibited.


3003: You May Not Follow Yourself

A device isn’t allowed to follow the user who is also authenticated on the device.


5001: Bad Range

The integer or date value/range is invalid.


5002: Unknown Sort

The sort requested does not exist. The full message of this error will provide more explanation.


5003: Unknown Expansion

The expansion requested does not exist. The full message of this error will provide more explanation.


5005: Validation Failure

When attempting to create the object, some data was either missing or invalid. The full message of this error will provide more explanation.


5006: No Company Badge Salt

You’ve attempted to print badges for TimeClock, but the company has not created any badges.


5007: Parameters Missing

A required parameter for this API was missing.


5008: Array Required

A parameter which is required to be an array was passed something other than an array.


5009: Unknown Only

The only field requested does not exist. The full message of this error will provide more explanation.


5010: Invalid Float

The floating point number is invalid.


5011: Invalid SIO-Version Header

The format of the SIO-Version request header is invalid.


5012: Invalid JSON

The posted JSON body is invalid.


5013: Invalid Page Size of Zero

The page_size parameter cannot be zero.


5014: Invalid mime-type requested

An invalid mime-type was requested.


6001: Expired User Code

The user-facing device code that was attempted to authorize has expired.


6002: Invalid User Code

The user-facing device code that was attempted to authorize does not exist, and is therefore invalid.

Error Details

taken

The attribute is not unique

inclusion

The attribute is not in the list of acceptable values

invalid

The attribute is not valid

empty

The attribute cannot be empty

blank

The attribute cannot be blank

too_long

The attribute is too long

not_a_hex

The attribute is not a valid hex color code

not_a_number

The attribute is not a number

not_an_integer

The attribute is not an integer

greater_than

The attribute is greater than a predefined limit

greater_than_or_equal_to

The attribute is greater than or equal to a predefined limit

less_than

The attribute is less than a predefined floor

less_than_or_equal_to

The attribute is greater than or equal to a predefined floor

too_long

The attribute is longer than allowed

too_short

The attribute is shorter than allowed

Forbidden Requests (403)

When the user is authenticated, but doesn’t have the necessary permissions to perform an action, the server will respond with the status code of 403 and include the user’s privileges in the payload.

Example payload:

{
  "company": {
    "id": "1",
    "scheduled_statuses": true
  },
  "user": {
    "id": "5",
    "roles": {
      "name": "Regular User",
      "billing": false
      "followed_users": false,
      "reminders": false,
      "safeties": false,
      "user_board": true,
      "manage_all_announcements": true,
      "manage_company_and_users": false,
      "manage_groups_and_memberships": false,
      "manage_member_announcements": false,
      "manage_others_archives": false,
      "manage_others_futures": false,
      "manage_others_status": false,
      "manage_own_archives": false,
      "manage_own_futures": true,
      "manage_own_status": true,
      "manage_status_automatically": true,
      "view_others_archives": true,
      "view_others_futures": true,
      "view_others_reports": false,
      "view_user_board_updated_at": true,
      "member_board": false,
      "manage_member_archives": false,
      "manage_member_futures": false,
      "manage_member_status": false,
      "view_all_announcements": true,
      "view_member_announcements": false,
      "view_member_archives": false,
      "view_member_futures": false,
      "view_member_reports": false,
      "created_at": 1506268448,
      "updated_at": 1506269853
    }
  }
}

The privileges payload may not exist on all forbidden responses. In the cases when an error code is used, such as when a company is disabled, only the code and message will be returned.

Web Hooks

Web Hooks are a great way to be notified when something happens inside Simple In/Out. When you add a Web Hook URL to Simple In/Out, we’ll send a request to that URL with JSON in the body to tell you about things that have happened.

Currently, this applies to only three event types: status.new, status.schedule, and status.destroy, though many may be added in the future. It is strongly advised that you code against the type attribute on the root of the JSON object to avoid new event types being added in the future having unexpected impacts on your code.

The root JSON keys define the basics and out of the box are compatible with Slack’s incoming webhooks. This also means that the text with be formatted in Markdown. Within the data object is much of the information specific to Simple In/Out, including ids that can be used in combination with APIv4 to request further information.

{
  "username": "Bojack Horseman",
  "email": "bojack@simplymadeapps.com",
  "icon_url": "http://bojackhorseman.com/avatar.gif",
  "text": "*In*: In Hollywoo",
  "type": "status.new",
  "data": {
    "user_id": "34858",
    "status": "in",
    "comment": "In Hollywoo",
    "created_at": 1448046759,
    "admin": {
      "id": "2844", "name": "Princess Carolyn"
    },
    "application": {
      "id": "84774", "name": "Simple In/Out iOS"
    }
  }
}



Announcements

Create a announcement

Creates a new announcement. Once this announcement is created, it will appear in the company’s announcements within the Simple In/Out apps. Users must have a role that permits managing announcements to create announcements. Companies are limited to 100 announcements.

Punto de llegada

POST /api/v4/announcements

Parametros

Name Description
announcement[message] requerido (string) the name of the announcement
announcement[push] (boolean) whether this announcement should trigger a push notification to users, defaults to false
announcement[group_id] (string) restrict the announcement to a specific group, defaults to no restrictions
announcement[expires_at] (integer) the epoch time when the announcement should expire, defaults to no expiration
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user'

Solicitud

Ruta

POST /api/v4/announcements

Encabezados

Content-Type: application/json
Authorization: Bearer TSjPtWxWCgrIZ4nk_DlvAwKB9DmFWYl3bJ65cw20O04

Cuerpo

{
  "announcement": {
    "message": "Evacuate the building",
    "push": false,
    "group_id": "65",
    "expires_at": 1777477596
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/announcements" -d '{"announcement":{"message":"Evacuate the building","push":false,"group_id":"65","expires_at":1777477596}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer TSjPtWxWCgrIZ4nk_DlvAwKB9DmFWYl3bJ65cw20O04"

Respuesta

Simulated Response

Campos de respuesta

Name Description
announcements (object) the newly created announcement attributes

Estado

201

Encabezados

etag: W/"0d8023f75b3ea332e40b015166f14969"

Cuerpo

{
  "announcements": {
    "id": "4",
    "group_id": "65",
    "user_id": "1469",
    "message": "Evacuate the building",
    "push": false,
    "expires_at": 1777477596,
    "created_at": 1777391196,
    "updated_at": 1777391196
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1777391196,
      "beacons": 1774280796,
      "desktop_presences": 1775317596,
      "favorites": 1769705196,
      "fences": 1769273196,
      "groups": 1777391196,
      "networks": 1777391196,
      "roles": 1777391196,
      "settings": 1777391196
    },
    "emergency": null
  }
}

Delete an announcement

Deletes an existing announcement. Users must have a role that permits managing the announcements to delete announcements.

Punto de llegada

DELETE /api/v4/announcements/:id

Solicitud

Ruta

DELETE /api/v4/announcements/3

Encabezados

Content-Type: application/json
Authorization: Bearer 94G1TnDqJGqZe269xfvr8qjt183yzF46TNK9Q9u6ptQ

cURL

curl "https://www.simpleinout.com/api/v4/announcements/3" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 94G1TnDqJGqZe269xfvr8qjt183yzF46TNK9Q9u6ptQ"

Respuesta

Simulated Response

Estado

204

List all announcements

Return a list of all the announcements belonging to the company.

Punto de llegada

GET /api/v4/announcements

Parametros

Name Description
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'name'
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user'

Solicitud

Ruta

GET /api/v4/announcements

Encabezados

Content-Type: application/json
Authorization: Bearer YJYELl4EmtMty_GRDb6tcdrfWteXMJ_k7oO2gVNaiCM

cURL

curl -g "https://www.simpleinout.com/api/v4/announcements" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer YJYELl4EmtMty_GRDb6tcdrfWteXMJ_k7oO2gVNaiCM"

Respuesta

Simulated Response

Campos de respuesta

Name Description
announcements (array) an array of announcements

Estado

200

Encabezados

etag: W/"509c14b1973605a64367a893efa5e887"
last-modified: Tue, 28 Apr 2026 15:46:35 GMT

Cuerpo

{
  "announcements": [
    {
      "id": "1",
      "group_id": null,
      "user_id": "1467",
      "message": "Et deleniti explicabo fugit.",
      "push": false,
      "expires_at": 1777477595,
      "created_at": 1777391195,
      "updated_at": 1777391195
    },
    {
      "id": "2",
      "group_id": null,
      "user_id": "1467",
      "message": "Soluta qui laboriosam itaque.",
      "push": false,
      "expires_at": 1777477595,
      "created_at": 1777391195,
      "updated_at": 1777391195
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 2,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/announcements",
      "last_href": "http://example.org/api/v4/announcements",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1777391195,
      "beacons": 1770741995,
      "desktop_presences": 1769618795,
      "favorites": 1769359595,
      "fences": 1776527195,
      "groups": 1770396395,
      "networks": 1770914795,
      "roles": 1777391195,
      "settings": 1777391195
    },
    "emergency": null
  }
}

Authentication

Authorization

Authorization is required to access the Simple In/Out API. This results in a HTTP 302 redirect to simpleinout.com. There, Simple In/Out will ask the user for their credentials and verify they wish to grant your application permission to act on their behalf. If they allow it, Simple In/Out will send a request to your redirect_uri with a code that you can use in the Authorization Code grant to have access and refresh tokens to access the API.

Punto de llegada

GET /oauth/authorize

Parametros

Name Description
response_type requerido (string) the type of authorization to use, in this case always 'code'
client_id requerido (string) your API client key
redirect_uri requerido (string) the URI to return the user to after authenticating, must match those registered with Simple In/Out
scope requerido (string) requested scope, either 'read' or 'write', by default 'read'
locale (string) the language for authorization. Available locales: en, en-au, en-ca, en-gb, de, es, fr, fr-ca. Defaults to 'en'

Solicitud

Ruta

GET /oauth/authorize?response_type=code&client_id=PLACE_YOUR_API_CLIENT_ID_HERE&redirect_uri=https%3A%2F%2Fwww.simplymadeapps.com%2Fredirect%2Furl&scope=write&locale=en

Encabezados

Content-Type: application/json

Parámetros de la consulta

response_type=code
client_id=PLACE_YOUR_API_CLIENT_ID_HERE
redirect_uri=https://www.simplymadeapps.com/redirect/url
scope=write
locale=en

cURL

curl -g "https://www.simpleinout.com/oauth/authorize?response_type=code&client_id=PLACE_YOUR_API_CLIENT_ID_HERE&redirect_uri=https%3A%2F%2Fwww.simplymadeapps.com%2Fredirect%2Furl&scope=write&locale=en" -X GET \
	-H "Content-Type: application/json"

Respuesta

Simulated Response

Estado

302

Authorization (Device)

Authorization is required to access the Simple In/Out API. This API will produce everything needed to display a code and URL to the user to authorize a device. Once this API has returned, polling can begin to the Device Grant to discover the user’s information after they have authorized.

Punto de llegada

POST /oauth/authorize_device

Parametros

Name Description
client_id requerido (string) your API client key
client_secret requerido (string) your API client secret
scope requerido (string) requested scope, must be 'executive'

Solicitud

Ruta

POST /oauth/authorize_device

Encabezados

Content-Type: application/json

Cuerpo

{
  "client_id": "PLACE_YOUR_API_CLIENT_ID_HERE",
  "client_secret": "PLACE_YOUR_API_CLIENT_SECRET_HERE",
  "scope": "executive"
}

cURL

curl "https://www.simpleinout.com/oauth/authorize_device" -d '{"client_id":"PLACE_YOUR_API_CLIENT_ID_HERE","client_secret":"PLACE_YOUR_API_CLIENT_SECRET_HERE","scope":"executive"}' -X POST \
	-H "Content-Type: application/json"

Respuesta

Simulated Response

Campos de respuesta

Name Description
device_code (string) the private code used to poll within the Device Grant
expires_in (integer) the number of seconds until these codes will expire
interval (integer) the number of seconds between polling events, any developer polling faster than this will receive 'slow_down' errors
user_code (string) the public code to display to the user
verification_uri (string) the public URL to display to the user
verification_uri_complete (string) the public URL to use if generating a QR code

Estado

200

Encabezados

etag: W/"3235ddd88903f69ef517a1fbc58640c6"

Cuerpo

{
  "device_code": "dDusZZY7UssCx8H8Cu8weOjUh93l6wxekVODCTYgW84",
  "user_code": "J2RHBIHC",
  "verification_uri": "http://example.org/code",
  "verification_uri_complete": "http://example.org/code?user_code=J2RHBIHC",
  "expires_in": 300,
  "interval": 5
}

Authorization Code grant

Authorization Code should be used for accessing the API on behalf of a particular user. This is useful for pulling information about the user, or customizing the return of some APIs by the user’s preference.

The first step here is to have your user authorize your app for use. To do this, send your user to our site as noted to the left, passing your client_id and your redirect_uri. We’ll handle asking for the user, authenticating they are who they say they are, and handling the authorization (asking the user for permission on your behalf).

Once your user successfully authorizes your application, they will be redirected back to you. In this response will be a code in the form of a query string. Use this code to request tokens from Simple In/Out. You’ll then receive an access token and refresh token.

Punto de llegada

POST /oauth/token

Parametros

Name Description
grant_type requerido (string) type of grant to use
client_id requerido (string) your API client key
client_secret requerido (string) your API client secret
code requerido (string) if using Authorization Code grant, this is the code that is returned from Simple In/Out
redirect_uri requerido (string) the URI to return the user to after authenticating, must match those registered with Simple In/Out
scope (string) requested scope, either 'read' or 'write', defaults to 'read'

Solicitud

Ruta

POST /oauth/token

Encabezados

Content-Type: application/json

Cuerpo

{
  "grant_type": "authorization_code",
  "client_id": "YOUR_API_CLIENT_ID",
  "client_secret": "YOUR_API_CLIENT_SECRET",
  "code": "r_nCagpfMYzutOcor7HFZG_vfKyFLfXmGdoXVA7WTTY",
  "redirect_uri": "https://www.simplymadeapps.com/redirect/url"
}

cURL

curl "https://www.simpleinout.com/oauth/token" -d '{"grant_type":"authorization_code","client_id":"YOUR_API_CLIENT_ID","client_secret":"YOUR_API_CLIENT_SECRET","code":"r_nCagpfMYzutOcor7HFZG_vfKyFLfXmGdoXVA7WTTY","redirect_uri":"https://www.simplymadeapps.com/redirect/url"}' -X POST \
	-H "Content-Type: application/json"

Respuesta

Simulated Response

Campos de respuesta

Name Description
access_token (string) the access token used to make API requests
refresh_token (string) used with the Refresh Token grant type to request a new token
token_type (string) identifies the type of token
expires_in (integer) length of time, in seconds, that the token will be honored
scope (string) the scope of the token, either 'read' or 'write'
created_at (integer) the time the token was issued
user (object) the authenticated user's id, company id, and role.

Estado

200

Encabezados

etag: W/"0c3a50166209de15635f8c463085f2ba"

Cuerpo

{
  "access_token": "ChFN8cek1AWZK_mGth5o7Tn7CuIsaqTk5V8lbBds0ec",
  "token_type": "Bearer",
  "expires_in": 7200,
  "refresh_token": "eD1jbrnkrTSjLtQ4RsxvYYGYMfvEel1esQdt5ut_mb0",
  "scope": "write",
  "created_at": 1777391195,
  "user": {
    "id": "1465",
    "company_id": "940",
    "roles": {
      "id": "3991",
      "name": "Administrator",
      "billing": true,
      "followed_users": true,
      "reminders": true,
      "safeties": true,
      "user_board": true,
      "manage_all_announcements": true,
      "manage_company_and_users": true,
      "manage_member_announcements": false,
      "manage_groups_and_memberships": true,
      "manage_others_archives": true,
      "manage_others_futures": true,
      "manage_others_status": true,
      "manage_own_archives": true,
      "manage_own_futures": true,
      "manage_own_status": true,
      "manage_status_automatically": true,
      "view_others_archives": true,
      "view_others_futures": true,
      "view_others_reports": true,
      "view_user_board_updated_at": true,
      "member_board": false,
      "manage_member_archives": false,
      "manage_member_futures": false,
      "manage_member_status": false,
      "view_all_announcements": true,
      "view_member_announcements": false,
      "view_member_archives": false,
      "view_member_futures": false,
      "view_member_reports": false,
      "created_at": 1777391195,
      "updated_at": 1777391195
    }
  }
}

Client Credentials grant

Client Credentials should be used for accessing the API generally, not attached to a specific user. Only the create company API allows the Client Credentials grant type as it is the only one that doesn’t require a specific user. This grant type is available for Simply Made Apps clients only.

Punto de llegada

POST /oauth/token

Parametros

Name Description
grant_type requerido (string) type of grant to use, in this case 'client_credentials'
client_id requerido (string) your API client key
client_secret requerido (string) your API client secret
scope requerido (string) requested scope, required to be 'executive'

Solicitud

Ruta

POST /oauth/token

Encabezados

Content-Type: application/json

Cuerpo

{
  "grant_type": "client_credentials",
  "client_id": "YOUR_API_CLIENT_ID",
  "client_secret": "YOUR_API_CLIENT_SECRET",
  "scope": "executive"
}

cURL

curl "https://www.simpleinout.com/oauth/token" -d '{"grant_type":"client_credentials","client_id":"YOUR_API_CLIENT_ID","client_secret":"YOUR_API_CLIENT_SECRET","scope":"executive"}' -X POST \
	-H "Content-Type: application/json"

Respuesta

Simulated Response

Campos de respuesta

Name Description
access_token (string) the access token used to make API requests
token_type (string) identifies the type of token
expires_in (integer) length of time, in seconds, that the token will be honored
scope (string) the scope of the token, either 'read' or 'write'
created_at (integer) the time the token was issued
user (object) the authenticated user's id and role (always nil in this case)

Estado

200

Encabezados

etag: W/"fdea1f0f3a7f43bc83e681de0bc28b90"

Cuerpo

{
  "access_token": "677JWBSOdDnsjCRi0oSUw8g5550jYR0JWZvgta4bgXg",
  "token_type": "Bearer",
  "expires_in": 7200,
  "scope": "executive",
  "created_at": 1777391195,
  "user": null
}

Device Code grant

Device Codes are used to generate API tokens for users based on codes displayed on devices (televisions, tablets). A private device code is required, which is not shown to the user, and the user will need to authorize via a user code that is smaller and displayed for them to enter into the Simple In/Out website. This grant type is available for Simply Made Apps clients only.

When successful, a status code of 200 will be returned along with tokens and information about the authorized user. When unsuccessful, a status code of 400 will be returned along with a JSON payload with an “error” key. The error key has several possible values.

  • authorization_pending is returned when the user hasn’t yet authorize this device code yet, but may in the future.
  • expired_token is returned when the user did not authorize and the device code is now expired (dead).
  • slow_down is returned when the developer is polling for a response faster than the agreed upon interval. Don’t do this.

Punto de llegada

POST /oauth/token

Parametros

Name Description
client_id requerido (string) your API client key
client_secret requerido (string) your API client secret
device_code requerido (string) private device_code to check
grant_type requerido (string) type of grant to use, in this case always 'urn:ietf:params:oauth:grant-type:device_code'

Solicitud

Ruta

POST /oauth/token

Encabezados

Content-Type: application/json

Cuerpo

{
  "client_id": "YOUR_API_CLIENT_ID",
  "client_secret": "YOUR_API_CLIENT_SECRET",
  "device_code": "WZIqMt85L3atheday7xvN1LNO9SLtwybrq4CkWmluEg",
  "grant_type": "urn:ietf:params:oauth:grant-type:device_code"
}

cURL

curl "https://www.simpleinout.com/oauth/token" -d '{"client_id":"YOUR_API_CLIENT_ID","client_secret":"YOUR_API_CLIENT_SECRET","device_code":"WZIqMt85L3atheday7xvN1LNO9SLtwybrq4CkWmluEg","grant_type":"urn:ietf:params:oauth:grant-type:device_code"}' -X POST \
	-H "Sio-Version: 1.0.0" \
	-H "Content-Type: application/json"

Respuesta

Simulated Response

Campos de respuesta

Name Description
access_token (string) the access token used to make API requests
refresh_token (string) used with the Refresh Token grant type to request a new token
token_type (string) identifies the type of token
expires_in (integer) length of time, in seconds, that the token will be honored
scope (string) the scope of the token, either 'read' or 'write'
created_at (integer) the time the token was issued
user (object) the authenticated user's id and role.

Estado

200

Encabezados

etag: W/"e77e32316a8f56099f6a61fdc66d8c87"

Cuerpo

{
  "access_token": "hCJWtGLOBh1Kdk7cIRqNtNITDyjjCQCF55YeW7Mm09E",
  "token_type": "Bearer",
  "expires_in": 7200,
  "refresh_token": "CTElc5V9zTfOTsVFrwJshVX7kRGsnNOOOpY4NHow5yc",
  "scope": "executive",
  "created_at": 1777391195,
  "user": {
    "id": "1459",
    "company_id": "936",
    "roles": {
      "id": "3975",
      "name": "Administrator",
      "billing": true,
      "followed_users": true,
      "reminders": true,
      "safeties": true,
      "user_board": true,
      "manage_all_announcements": true,
      "manage_company_and_users": true,
      "manage_member_announcements": false,
      "manage_groups_and_memberships": true,
      "manage_others_archives": true,
      "manage_others_futures": true,
      "manage_others_status": true,
      "manage_own_archives": true,
      "manage_own_futures": true,
      "manage_own_status": true,
      "manage_status_automatically": true,
      "view_others_archives": true,
      "view_others_futures": true,
      "view_others_reports": true,
      "view_user_board_updated_at": true,
      "member_board": false,
      "manage_member_archives": false,
      "manage_member_futures": false,
      "manage_member_status": false,
      "view_all_announcements": true,
      "view_member_announcements": false,
      "view_member_archives": false,
      "view_member_futures": false,
      "view_member_reports": false,
      "created_at": 1777391195,
      "updated_at": 1777391195
    }
  }
}

Refresh Token grant

Refresh Token should be used to renew your access token in the event that it has expired. This is useful for regaining access without again having to as the user for credentials.

Punto de llegada

POST /oauth/token

Parametros

Name Description
grant_type requerido (string) type of grant to use, in this case always 'refresh_token'
client_id requerido (string) your API client key
client_secret requerido (string) your API client secret
refresh_token requerido (string) your refresh token

Solicitud

Ruta

POST /oauth/token

Encabezados

Content-Type: application/json

Cuerpo

{
  "grant_type": "refresh_token",
  "client_id": "YOUR_API_CLIENT_ID",
  "client_secret": "YOUR_API_CLIENT_SECRET",
  "refresh_token": "osm5x33j2wd6rlsnwenrdrlgk1jpgsi5"
}

cURL

curl "https://www.simpleinout.com/oauth/token" -d '{"grant_type":"refresh_token","client_id":"YOUR_API_CLIENT_ID","client_secret":"YOUR_API_CLIENT_SECRET","refresh_token":"osm5x33j2wd6rlsnwenrdrlgk1jpgsi5"}' -X POST \
	-H "Content-Type: application/json"

Respuesta

Simulated Response

Campos de respuesta

Name Description
access_token (string) the access token used to make API requests
refresh_token (string) used with the Refresh Token grant type to request a new token
token_type (string) identifies the type of token
expires_in (integer) length of time, in seconds, that the token will be honored
scope (string) the scope of the token, either 'read' or 'write'
created_at (integer) the time the token was issued
user (object) the authenticated user's id and role.

Estado

200

Encabezados

etag: W/"e84d3bf269cba67fcc8bdedb604b7ffd"

Cuerpo

{
  "access_token": "uLAscViCsla1yTAxKygwBLx0LEJfatJOoJuGgxMZUT8",
  "token_type": "Bearer",
  "expires_in": 604800,
  "refresh_token": "o8JINpTIUVjcQOWrZBddUpQa2C99EnycCGrPVdcEtpg",
  "scope": "write",
  "created_at": 1777391195,
  "user": {
    "id": "1462",
    "company_id": "938",
    "roles": {
      "id": "3983",
      "name": "Administrator",
      "billing": true,
      "followed_users": true,
      "reminders": true,
      "safeties": true,
      "user_board": true,
      "manage_all_announcements": true,
      "manage_company_and_users": true,
      "manage_member_announcements": false,
      "manage_groups_and_memberships": true,
      "manage_others_archives": true,
      "manage_others_futures": true,
      "manage_others_status": true,
      "manage_own_archives": true,
      "manage_own_futures": true,
      "manage_own_status": true,
      "manage_status_automatically": true,
      "view_others_archives": true,
      "view_others_futures": true,
      "view_others_reports": true,
      "view_user_board_updated_at": true,
      "member_board": false,
      "manage_member_archives": false,
      "manage_member_futures": false,
      "manage_member_status": false,
      "view_all_announcements": true,
      "view_member_announcements": false,
      "view_member_archives": false,
      "view_member_futures": false,
      "view_member_reports": false,
      "created_at": 1777391195,
      "updated_at": 1777391195
    }
  }
}

Revoke a token

Revokes a token, rendering it invalid.

Punto de llegada

POST /oauth/revoke

Parametros

Name Description
client_id requerido (string) your API client key
client_secret requerido (string) your API client secret
token requerido (string) the token to revoke

Solicitud

Ruta

POST /oauth/revoke

Encabezados

Content-Type: application/json

Cuerpo

{
  "client_id": "5642215041840",
  "client_secret": "5934014756262",
  "token": "2MgwL_n0xFt1dbbVxo3b754KRTBYepLBQWHdT2PHT_k"
}

cURL

curl "https://www.simpleinout.com/oauth/revoke" -d '{"client_id":"5642215041840","client_secret":"5934014756262","token":"2MgwL_n0xFt1dbbVxo3b754KRTBYepLBQWHdT2PHT_k"}' -X POST \
	-H "Content-Type: application/json"

Respuesta

Simulated Response

Estado

200

Encabezados

etag: W/"44136fa355b3678a1146ad16f7e8649e"

Cuerpo

{}

Token information

Provides details about the OAuth token.

Punto de llegada

GET /oauth/token/info

Solicitud

Ruta

GET /oauth/token/info

Encabezados

Content-Type: application/json
Authorization: Bearer MCvLGqMA7sNaH7lRluWvoR72mlDM7ejB6xoY4dBFweU

cURL

curl -g "https://www.simpleinout.com/oauth/token/info" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer MCvLGqMA7sNaH7lRluWvoR72mlDM7ejB6xoY4dBFweU"

Respuesta

Simulated Response

Campos de respuesta

Name Description
resource_owner_id (integer) the id of the user
scopes (array) the scopes this token is authorized to use
expires_in_seconds (integer) the number of seconds until the token expires
application (object) information about the application
created_at (integer) the time the token was issued

Estado

200

Encabezados

etag: W/"1fd6a5d95a75881601b0413c51a985dd"

Cuerpo

{
  "resource_owner_id": 1461,
  "scope": [
    "read"
  ],
  "expires_in": 604800,
  "application": {
    "uid": "6312462908201"
  },
  "created_at": 1777391195
}

Automatic Update Events

Create an automatic update event

Creates new automatic update events. Users must have a role that permits managing their own current status.

Punto de llegada

POST /api/v4/automatic_update_events

Parametros

Name Description
automatic_update_events requerido (array) the array of parameters for each of the events
automatic_update_events[][abandoned_at] (float) epoch time, with precision, for when the device stopped trying to post the event to the server
automatic_update_events[][device_id] requerido (string) the unique identifier of the user's device
automatic_update_events[][event_type] requerido (string) the type of event, either 'entry' or 'exit'
automatic_update_events[][trigger_id] requerido (string) the unique identifier of the item that triggered the event
automatic_update_events[][trigger_type] requerido (string) the type of item that triggered the event, 'Beacon', 'Fence', or 'Network'
automatic_update_events[][triggered_at] requerido (float) epoch time, with precision, for when the event was originally triggered

Solicitud

Ruta

POST /api/v4/automatic_update_events

Encabezados

Content-Type: application/json
Authorization: Bearer xse6vjtF6M4FC8k0P5U85C-7kVqeEL6upZ8oihkGnk0

Cuerpo

{
  "automatic_update_events": [
    {
      "abandoned_at": 1777391136.539136,
      "device_id": 34,
      "event_type": "entry",
      "trigger_id": 2,
      "trigger_type": "Beacon",
      "triggered_at": 1777391076.5720289
    },
    {
      "device_id": 34,
      "event_type": "exit",
      "trigger_id": "noop-deleted-beacon",
      "trigger_type": "Beacon",
      "triggered_at": 1777391196.572047
    }
  ]
}

cURL

curl "https://www.simpleinout.com/api/v4/automatic_update_events" -d '{"automatic_update_events":[{"abandoned_at":1777391136.539136,"device_id":34,"event_type":"entry","trigger_id":2,"trigger_type":"Beacon","triggered_at":1777391076.5720289},{"device_id":34,"event_type":"exit","trigger_id":"noop-deleted-beacon","trigger_type":"Beacon","triggered_at":1777391196.572047}]}' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer xse6vjtF6M4FC8k0P5U85C-7kVqeEL6upZ8oihkGnk0"

Respuesta

Simulated Response

Campos de respuesta

Name Description
automatic_update_events (array) contains the ids of the created events or errors from the invalid events

Estado

201

Encabezados

etag: W/"6dd2a9baf4d3ade37a4c9e6d3e87d573"

Cuerpo

{
  "automatic_update_events": [
    {
      "id": "2"
    },
    {
      "id": null,
      "errors": {
        "trigger": "blank"
      }
    }
  ],
  "meta": {
    "last_updated_at": {
      "announcements": 1771087596,
      "beacons": 1777391196,
      "desktop_presences": 1776699996,
      "favorites": 1775576796,
      "fences": 1769791596,
      "groups": 1769013996,
      "networks": 1775490396,
      "roles": 1777391196,
      "settings": 1777391196
    },
    "emergency": null,
    "update_available": false
  }
}

Beacons

Create a beacon

Creates a new beacon. Once this beacon is created, it will appear in the company’s beacons within the Simple In/Out apps. The UUID can then be added to a hardware beacon to broadcast. Users must have a role that permits managing the company to create beacons. Companies are limited to 100 Beacons.

Punto de llegada

POST /api/v4/beacons

Parametros

Name Description
beacon[name] requerido (string) the name of the beacon
beacon[uuid] (string) the unique beacon identifier
beacon[comment_on_entry] (string) the comment applied to status updates on entry, defaults to 'In at {name}'
beacon[comment_on_exit] (string) the comment applied to status updates on exit, defaults to 'Left {name}'
beacon[status_on_entry] (string) the status to apply on entry: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'in'
beacon[status_on_exit] (string) the status to apply on exit: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'out'

Solicitud

Ruta

POST /api/v4/beacons

Encabezados

Content-Type: application/json
Authorization: Bearer 5XbUoI199EGDy8naOUgHvlbRnhTphLH9fcoAA-zzha4

Cuerpo

{
  "beacon": {
    "name": "My Office",
    "uuid": "6EA4801F-4D41-4114-AFA7-7EC977C81B41"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/beacons" -d '{"beacon":{"name":"My Office","uuid":"6EA4801F-4D41-4114-AFA7-7EC977C81B41"}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 5XbUoI199EGDy8naOUgHvlbRnhTphLH9fcoAA-zzha4"

Respuesta

Simulated Response

Campos de respuesta

Name Description
beacons (object) the newly created beacon attributes

Estado

201

Encabezados

etag: W/"b4a23491206c3afa00b0925532e36e40"

Cuerpo

{
  "beacons": {
    "id": "5",
    "name": "My Office",
    "uuid": "6EA4801F-4D41-4114-AFA7-7EC977C81B41",
    "comment_on_entry": "In at My Office",
    "comment_on_exit": "Left My Office",
    "entry": true,
    "exit": true,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "created_at": 1777391199,
    "updated_at": 1777391199
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1777304799,
      "beacons": 1777391199,
      "desktop_presences": 1769445999,
      "favorites": 1770482799,
      "fences": 1776613599,
      "groups": 1773848799,
      "networks": 1769100399,
      "roles": 1777391199,
      "settings": 1777391199
    },
    "emergency": null
  }
}

Delete a beacon

Deletes an existing beacon. Users must have a role that permits managing the company to delete beacons.

Punto de llegada

DELETE /api/v4/beacons/:id

Solicitud

Ruta

DELETE /api/v4/beacons/7

Encabezados

Content-Type: application/json
Authorization: Bearer eB0uUJ2674_tdqv8JvJ1p3bMoqiTGCznx6AMGC4L9SA

cURL

curl "https://www.simpleinout.com/api/v4/beacons/7" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer eB0uUJ2674_tdqv8JvJ1p3bMoqiTGCznx6AMGC4L9SA"

Respuesta

Simulated Response

Estado

204

List all beacons

Return a list of all the beacons belonging to the company.

Punto de llegada

GET /api/v4/beacons

Parametros

Name Description
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'name'
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results

Solicitud

Ruta

GET /api/v4/beacons

Encabezados

Content-Type: application/json
Authorization: Bearer F_FQp7F4tYij4U_8lkKnoUtcDMibAVxjIrymXsI4WhE

cURL

curl -g "https://www.simpleinout.com/api/v4/beacons" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer F_FQp7F4tYij4U_8lkKnoUtcDMibAVxjIrymXsI4WhE"

Respuesta

Simulated Response

Campos de respuesta

Name Description
beacons (array) an array of beacons

Estado

200

Encabezados

etag: W/"751516b44387b8da5fde035bbd6ea90d"
last-modified: Tue, 28 Apr 2026 15:46:39 GMT

Cuerpo

{
  "beacons": [
    {
      "id": "3",
      "name": "2 - South Elvialand",
      "uuid": "92F17930-4B8A-42D1-B0E2-9B94E5F44260",
      "comment_on_entry": "In at 2 - South Elvialand",
      "comment_on_exit": "Left 2 - South Elvialand",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1777391199,
      "updated_at": 1777391199
    },
    {
      "id": "4",
      "name": "3 - South Peggie",
      "uuid": "1C641A82-1341-4E78-9293-A4F0235F3245",
      "comment_on_entry": "In at 3 - South Peggie",
      "comment_on_exit": "Left 3 - South Peggie",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1777391199,
      "updated_at": 1777391199
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 2,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/beacons",
      "last_href": "http://example.org/api/v4/beacons",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1770137199,
      "beacons": 1777391199,
      "desktop_presences": 1774453599,
      "favorites": 1772642799,
      "fences": 1770223599,
      "groups": 1770741999,
      "networks": 1776095199,
      "roles": 1777391199,
      "settings": 1777391199
    },
    "emergency": null
  }
}

Update a beacon

Updates an existing beacon. Please note that if the UUID of the beacon is updated, any corresponding hardware must also be updated to broadcast the new UUID. Users must have a role that permits managing the company to update beacons.

Punto de llegada

PATCH /api/v4/beacons/:id

Parametros

Name Description
beacon[name] (string) the name of the beacon
beacon[uuid] (string) the unique beacon identifier
beacon[comment_on_entry] (string) the comment applied to status updates on entry, defaults to 'In at {name}'
beacon[comment_on_exit] (string) the comment applied to status updates on exit, defaults to 'Left {name}'
beacon[status_on_entry] (string) the status to apply on entry: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'in'
beacon[status_on_exit] (string) the status to apply on exit: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'out'

Solicitud

Ruta

PATCH /api/v4/beacons/6

Encabezados

Content-Type: application/json
Authorization: Bearer AdmwSkXzvx7zuHLwd2m_DsMsQmeLfWdvUCjO_4i7WTQ

Cuerpo

{
  "beacon": {
    "name": "My Renamed Office"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/beacons/6" -d '{"beacon":{"name":"My Renamed Office"}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer AdmwSkXzvx7zuHLwd2m_DsMsQmeLfWdvUCjO_4i7WTQ"

Respuesta

Simulated Response

Campos de respuesta

Name Description
beacons (object) the newly updated beacon attributes

Estado

200

Encabezados

etag: W/"e1bec25bb0bd27ef77ee837edd76b3fa"

Cuerpo

{
  "beacons": {
    "id": "6",
    "name": "My Renamed Office",
    "uuid": "5A5D6E92-4B77-4D71-90CA-E4E610A59D5D",
    "comment_on_entry": "In at 4 - South Clarence",
    "comment_on_exit": "Left 4 - South Clarence",
    "entry": true,
    "exit": true,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "created_at": 1777391199,
    "updated_at": 1777391199
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1771087599,
      "beacons": 1777391199,
      "desktop_presences": 1774367199,
      "favorites": 1770309999,
      "fences": 1776095199,
      "groups": 1774712799,
      "networks": 1771260399,
      "roles": 1777391199,
      "settings": 1777391199
    },
    "emergency": null
  }
}

Codes

Authorize a user code

Authorize a user-facing code for access to the API. This is the equivalent to what simpleinout.com/code does for a user when entering this code. When scanning a QR code on a phone with the Simple In/Out app installed, it is presumed that there is a greater chance the user is authenticated in the app vs the website.

If an error occurs, the error code will be in the 6xxx series of errors. Refer to the error handling docs at the top of this readme for details.

This API requires executive scope (Simply Made Apps only).

Punto de llegada

POST /api/v4/codes

Parametros

Name Description
user_code requerido (string) the public-facing user code scanned by user

Solicitud

Ruta

POST /api/v4/codes

Encabezados

Content-Type: application/json
Authorization: Bearer yz22D3c4us-anaOu3qtQTIQ6yvprg13TasCU58aXFpg

Cuerpo

{
  "user_code": "BGONYSFV"
}

cURL

curl "https://www.simpleinout.com/api/v4/codes" -d '{"user_code":"BGONYSFV"}' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer yz22D3c4us-anaOu3qtQTIQ6yvprg13TasCU58aXFpg"

Respuesta

Simulated Response

Estado

204

Companies

Create Badges PDF

Schedules a new PDF of badges to be created. This will be created in the background due to the length of time it may take to complete. The return will indicate where the badges will be stored when finished, and it is the responsibility of the developer to check that destination for the finished result. If the company does not have a ‘badge_salt’ yet set, this API will return a 404.

Users must have a role that permits managing the company to generate badges.

Punto de llegada

GET /api/v4/companies/my/badges

Parametros

Name Description
title Title to display on badges, defaults to company name
paper Paper type for badge printing, accepts US_LETTER, AVERY_5264, BADGY, ROLLO_SMALL, or ROLLO_LARGE, defaults to US_LETTER

Solicitud

Ruta

GET /api/v4/companies/my/badges?title=Badges&paper=AVERY_5264

Encabezados

Content-Type: application/json
Authorization: Bearer WQCcrACAS3vHIEabJ71Y7zPxsn-aXFMlLJ95BZIGYng

Parámetros de la consulta

title=Badges
paper=AVERY_5264

cURL

curl -g "https://www.simpleinout.com/api/v4/companies/my/badges?title=Badges&paper=AVERY_5264" -X GET \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer WQCcrACAS3vHIEabJ71Y7zPxsn-aXFMlLJ95BZIGYng"

Respuesta

Simulated Response

Campos de respuesta

Name Description
badges (object) badges object containing the URL the PDF will be stored at

Estado

202

Cuerpo

{
  "badges": {
    "url": "https://s3.amazonaws.com/simpleinout-development/badges/badges-9441777391196.pdf"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1773071196,
      "beacons": 1772984796,
      "desktop_presences": 1774021596,
      "favorites": 1774799196,
      "fences": 1775144796,
      "groups": 1775663196,
      "networks": 1774626396,
      "roles": 1777391196,
      "settings": 1777391196
    },
    "emergency": null,
    "update_available": false
  }
}

Create a company

Creates a new company. The company defaults to the Pro 50 trial plan. This API requires a user-less Client Credential grant, and you must have executive scope (Simply Made Apps only).

Punto de llegada

POST /api/v4/companies

Parametros

Name Description
company[name] requerido (string) the name of the company
user[user_name] requerido (string) the name of the first user, who is also the admin
user[email] requerido (string) the email of the first user, who is also the admin
user[password] requerido (string) the password of the first user, who is also the admin
user[lang] requerido (string) the language code for the first user, defaults to 'en'
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'announcements', 'announcements.user', 'billing', 'beacons', 'desktop_presences', 'fences', 'groups', 'favorites', 'networks', 'roles'

Solicitud

Ruta

POST /api/v4/companies

Encabezados

Content-Type: application/json
Authorization: Bearer zr-dK4GkXFvjWeANRcR0dUCXk_Clfdiq-goJbCuEvNk

Cuerpo

{
  "company": {
    "name": "My Company"
  },
  "user": {
    "user_name": "Bojack Horseman",
    "email": "bojack@simplymadeapps.com",
    "password": "abcdef123456"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/companies" -d '{"company":{"name":"My Company"},"user":{"user_name":"Bojack Horseman","email":"bojack@simplymadeapps.com","password":"abcdef123456"}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer zr-dK4GkXFvjWeANRcR0dUCXk_Clfdiq-goJbCuEvNk"

Respuesta

Simulated Response

Campos de respuesta

Name Description
companies[name] (string) the authorized user's company name
companies[available_statuses] (array) the statuses that are available to the company
companies[logo_url] (string) url of an image to be used as a fullscreen logo
companies[default_role_id] (string) the unique identifier for the default role
companies[scheduled_statuses] (boolean) whether Scheduled Statuses feature is enabled
companies[badge_salt] (string) badge salt for TimeClock
companies[theme] (string) the currently selected theme color for the company
companies[super_company] (object) id and name of the super-company
companies[created_at] (integer) epoch time the company was created

Estado

201

Encabezados

etag: W/"de614a5e636241eeae99f07c79f089d2"

Cuerpo

{
  "companies": {
    "id": "947",
    "announcements_enabled": true,
    "available_statuses": [
      "in",
      "remote",
      "busy",
      "break",
      "out",
      "sick",
      "vacation"
    ],
    "name": "My Company",
    "scheduled_statuses": true,
    "default_role_id": "4021",
    "logo_url": null,
    "created_at": 1777391196
  },
  "meta": {
    "last_updated_at": {
      "announcements": 0,
      "beacons": 0,
      "desktop_presences": 0,
      "favorites": 0,
      "fences": 0,
      "groups": 0,
      "networks": 0,
      "roles": 1777391196,
      "settings": 1777391196
    },
    "emergency": null,
    "update_available": false
  }
}

Create/Update company badge salt

Creates a new badge salt. If a badge salt already exists, this will overwrite it with a new one. Users must have a role that permits managing the company to create a new badge salt.

Punto de llegada

POST /api/v4/companies/my/badges

Parametros

Name Description
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'announcements', 'announcements.user', 'billing', 'beacons', 'desktop_presences', 'fences', 'groups', 'favorites', 'networks', 'roles'

Solicitud

Ruta

POST /api/v4/companies/my/badges

Encabezados

Content-Type: application/json
Authorization: Bearer OmFKWPIAfHHE6IBmUvygNSCOUOK84b3POldnikFUTno

cURL

curl "https://www.simpleinout.com/api/v4/companies/my/badges" -d '' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer OmFKWPIAfHHE6IBmUvygNSCOUOK84b3POldnikFUTno"

Respuesta

Simulated Response

Campos de respuesta

Name Description
companies (object) the newly updated company attributes

Estado

200

Encabezados

etag: W/"c48b57edd4903ea8cec5f18df61fa2b6"

Cuerpo

{
  "companies": {
    "id": "946",
    "announcements_enabled": true,
    "available_statuses": [
      "in",
      "out"
    ],
    "name": "Nikolaus, Nolan and Crooks",
    "scheduled_statuses": true,
    "default_role_id": "4017",
    "logo_url": null,
    "created_at": 1777391196,
    "badge_salt": "368e2436e62ea30e595ba1ad96fa6cb0",
    "theme": "blue",
    "super_company": null
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1776440796,
      "beacons": 1774712796,
      "desktop_presences": 1774539996,
      "favorites": 1774971996,
      "fences": 1777218396,
      "groups": 1772642796,
      "networks": 1774280796,
      "roles": 1777391196,
      "settings": 1777391196
    },
    "emergency": null,
    "update_available": false
  }
}

Create/Update company favorites

Creates company-wide favorites. If company favorites exist, they will be overwritten by the new ones. Users must have a role that permits managing the company to create favorites. Companies are limited to 50 favorites.

Punto de llegada

POST /api/v4/companies/my/favorites

Parametros

Name Description
favorites requerido (array) array of objects consisting of 'status' and 'comment'
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'announcements', 'announcements.user', 'billing', 'beacons', 'desktop_presences', 'fences', 'groups', 'favorites', 'networks', 'roles'

Solicitud

Ruta

POST /api/v4/companies/my/favorites

Encabezados

Content-Type: application/json
Authorization: Bearer RtJ8Y83WOmqcIxSoDrzoMC1mU2VTb-6e8imD56qEpxQ

Cuerpo

{
  "favorites": [
    {
      "status": "in",
      "comment": "At Work"
    },
    {
      "status": "out",
      "comment": "On Vacation"
    }
  ],
  "expand": "favorites"
}

cURL

curl "https://www.simpleinout.com/api/v4/companies/my/favorites" -d '{"favorites":[{"status":"in","comment":"At Work"},{"status":"out","comment":"On Vacation"}],"expand":"favorites"}' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer RtJ8Y83WOmqcIxSoDrzoMC1mU2VTb-6e8imD56qEpxQ"

Respuesta

Simulated Response

Campos de respuesta

Name Description
companies (object) the updated company attributes

Estado

200

Encabezados

etag: W/"9f3da1f5a493e40918f6dee7f4a5e3a0"

Cuerpo

{
  "companies": {
    "id": "948",
    "announcements_enabled": true,
    "available_statuses": [
      "in",
      "out"
    ],
    "name": "Muller-Towne",
    "scheduled_statuses": true,
    "default_role_id": "4025",
    "logo_url": null,
    "created_at": 1777391196,
    "badge_salt": null,
    "theme": "blue",
    "super_company": null,
    "favorites": [
      {
        "status": "in",
        "comment": "At Work"
      },
      {
        "status": "out",
        "comment": "On Vacation"
      }
    ]
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1770223596,
      "beacons": 1770655596,
      "desktop_presences": 1769964396,
      "favorites": 1777391196,
      "fences": 1776527196,
      "groups": 1769618796,
      "networks": 1771519596,
      "roles": 1777391196,
      "settings": 1777391196
    },
    "emergency": null,
    "update_available": false
  }
}

Retrieve the current company

Return the company the authorized user belongs to.

Punto de llegada

GET /api/v4/companies/my

Parametros

Name Description
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'announcements', 'announcements.user', 'billing', 'beacons', 'desktop_presences', 'fences', 'groups', 'favorites', 'networks', 'roles'

Solicitud

Ruta

GET /api/v4/companies/my

Encabezados

Content-Type: application/json
Authorization: Bearer Wr9U1eyerJ9kEYTGBv073_RYOCd_FxLEZktQSwgxGhY

cURL

curl -g "https://www.simpleinout.com/api/v4/companies/my" -X GET \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer Wr9U1eyerJ9kEYTGBv073_RYOCd_FxLEZktQSwgxGhY"

Respuesta

Simulated Response

Campos de respuesta

Name Description
companies[name] (string) the authorized user's company name
companies[logo_url] (string) url of an image to be used as a fullscreen logo
companies[default_role_id] (string) the unique identifier for the default role
companies[scheduled_statuses] (boolean) whether Scheduled Statuses feature is enabled
companies[available_statuses] (array) the statuses that are available to the company
companies[badge_salt] (string) badge salt for TimeClock
companies[theme] (string) the currently selected theme color for the company
companies[super_company] (object) id and name of the super-company
companies[created_at] (integer) epoch time the company was created

Estado

200

Encabezados

etag: W/"5e27eba05cca72a446c4e0c9699d82be"
last-modified: Tue, 28 Apr 2026 15:46:36 GMT

Cuerpo

{
  "companies": {
    "id": "945",
    "announcements_enabled": true,
    "available_statuses": [
      "in",
      "out"
    ],
    "name": "Marvin-Cassin",
    "scheduled_statuses": true,
    "default_role_id": "4013",
    "logo_url": null,
    "created_at": 1777391196,
    "badge_salt": null,
    "theme": "blue",
    "super_company": null
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1770309996,
      "beacons": 1776872796,
      "desktop_presences": 1776613596,
      "favorites": 1771173996,
      "fences": 1771778796,
      "groups": 1776786396,
      "networks": 1772297196,
      "roles": 1777391196,
      "settings": 1777391196
    },
    "emergency": null,
    "update_available": false
  }
}

Desktop Presences

Create a desktop presence

Creates a new desktop presence. Once this desktop presence is created, it will appear in the company’s desktop presences within the Simple In/Out apps. Users must have a role that permits managing the company to create desktop presences. Companies are limited to 100 desktop presences.

Punto de llegada

POST /api/v4/desktop_presences

Parametros

Name Description
desktop_presence[name] requerido (string) the name of the desktop presences, no longer than 44 characters
desktop_presence[comment_on_entry] (string) the comment applied to status updates on entry, defaults to 'In at {name}'
desktop_presence[comment_on_exit] (string) the comment applied to status updates on exit, defaults to 'Left {name}'
desktop_presence[status_on_entry] (string) the status to apply on entry: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'in'
desktop_presence[status_on_exit] (string) the status to apply on exit: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'out'
desktop_presence[ranges] (array) an array of CIDR notations that are the only networks associated with this desktop presence (if empty any IP address is valid)

Solicitud

Ruta

POST /api/v4/desktop_presences

Encabezados

Content-Type: application/json
Authorization: Bearer uleSkIJvaF3O6BoBOLEy9HPFkzwIXGp_0ZV5BDXY_uY

Cuerpo

{
  "desktop_presence": {
    "name": "Home"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/desktop_presences" -d '{"desktop_presence":{"name":"Home"}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer uleSkIJvaF3O6BoBOLEy9HPFkzwIXGp_0ZV5BDXY_uY"

Respuesta

Simulated Response

Campos de respuesta

Name Description
desktop_presences (object) the newly created desktop presence attributes

Estado

201

Encabezados

etag: W/"cdf5d5b28dbf46147d6639efe180318d"

Cuerpo

{
  "desktop_presences": {
    "id": "3",
    "name": "Home",
    "comment_on_entry": "In at Home",
    "comment_on_exit": "Left Home",
    "idle_time": 10,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "ranges": [],
    "created_at": 1777391199,
    "updated_at": 1777391199
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1771260399,
      "beacons": 1771951599,
      "desktop_presences": 1777391199,
      "favorites": 1772210799,
      "fences": 1771260399,
      "groups": 1777131999,
      "networks": 1776181599,
      "roles": 1777391199,
      "settings": 1777391199
    },
    "emergency": null
  }
}

Delete a desktop presence

Deletes an existing desktop presence. Users must have a role that permits managing the company to delete desktop presences.

Punto de llegada

DELETE /api/v4/desktop_presences/:id

Solicitud

Ruta

DELETE /api/v4/desktop_presences/2

Encabezados

Content-Type: application/json
Authorization: Bearer fu1GfOGP48q3kwg_J1_4AdPYP9VPFYwGpja3uK5zmdU

cURL

curl "https://www.simpleinout.com/api/v4/desktop_presences/2" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer fu1GfOGP48q3kwg_J1_4AdPYP9VPFYwGpja3uK5zmdU"

Respuesta

Simulated Response

Estado

204

List all desktop presences

Return a list of all the desktop presences belonging to the company.

Punto de llegada

GET /api/v4/desktop_presences

Parametros

Name Description
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'name'
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results

Solicitud

Ruta

GET /api/v4/desktop_presences

Encabezados

Content-Type: application/json
Authorization: Bearer 6iOmhU1fAkzgz-q32lckdjtEDYkOibrKxiwWw4ozTPQ

cURL

curl -g "https://www.simpleinout.com/api/v4/desktop_presences" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 6iOmhU1fAkzgz-q32lckdjtEDYkOibrKxiwWw4ozTPQ"

Respuesta

Simulated Response

Campos de respuesta

Name Description
desktop_presences (array) an array of desktop presences

Estado

200

Encabezados

etag: W/"c2f548b98e94cd21e4dcdeda59847ab9"
last-modified: Tue, 28 Apr 2026 15:46:39 GMT

Cuerpo

{
  "desktop_presences": [
    {
      "id": "5",
      "name": "3 - Loniport",
      "comment_on_entry": "In at 3 - Loniport",
      "comment_on_exit": "Left 3 - Loniport",
      "idle_time": 10,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "ranges": [],
      "created_at": 1777391199,
      "updated_at": 1777391199
    },
    {
      "id": "6",
      "name": "4 - West Ronald",
      "comment_on_entry": "In at 4 - West Ronald",
      "comment_on_exit": "Left 4 - West Ronald",
      "idle_time": 10,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "ranges": [],
      "created_at": 1777391199,
      "updated_at": 1777391199
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 2,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/desktop_presences",
      "last_href": "http://example.org/api/v4/desktop_presences",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1770223599,
      "beacons": 1771951599,
      "desktop_presences": 1777391199,
      "favorites": 1773762399,
      "fences": 1769532399,
      "groups": 1775663199,
      "networks": 1775835999,
      "roles": 1777391199,
      "settings": 1777391199
    },
    "emergency": null
  }
}

Update a desktop presence

Updates an existing desktop presence. Users must have a role that permits managing the company to update desktop presences.

Punto de llegada

PATCH /api/v4/desktop_presences/:id

Parametros

Name Description
desktop_presence[name] (string) the name of the desktop presence, no longer than 44 characters
desktop_presence[comment_on_entry] (string) the comment applied to status updates on entry, defaults to 'In at {name}'
desktop_presence[comment_on_exit] (string) the comment applied to status updates on exit, defaults to 'Left {name}'
desktop_presence[status_on_entry] (string) the status to apply on entry: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'in'
desktop_presence[status_on_exit] (string) the status to apply on exit: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'out'
desktop_presence[ranges] (array) an array of CIDR notations that are the only networks associated with this desktop presence (if empty any IP address is valid)

Solicitud

Ruta

PATCH /api/v4/desktop_presences/4

Encabezados

Content-Type: application/json
Authorization: Bearer V7PG9WqiAbSCKA6jZ_EGvvAR6fOrpJT5olni72x5kV4

Cuerpo

{
  "desktop_presence": {
    "name": "Home"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/desktop_presences/4" -d '{"desktop_presence":{"name":"Home"}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer V7PG9WqiAbSCKA6jZ_EGvvAR6fOrpJT5olni72x5kV4"

Respuesta

Simulated Response

Campos de respuesta

Name Description
desktop_presences (object) the newly updated desktop presence attributes

Estado

200

Encabezados

etag: W/"4c5d0cabb68e1b577bf8f3d2730bed07"

Cuerpo

{
  "desktop_presences": {
    "id": "4",
    "name": "Home",
    "comment_on_entry": "In at 2 - Port Brunildafort",
    "comment_on_exit": "Left 2 - Port Brunildafort",
    "idle_time": 10,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "ranges": [],
    "created_at": 1777391199,
    "updated_at": 1777391199
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1773416799,
      "beacons": 1776267999,
      "desktop_presences": 1777391199,
      "favorites": 1770914799,
      "fences": 1770828399,
      "groups": 1772556399,
      "networks": 1769964399,
      "roles": 1777391199,
      "settings": 1777391199
    },
    "emergency": null
  }
}

Devices

Create a device

Creates a new device.

Punto de llegada

POST /api/v4/devices

Parametros

Name Description
device[os] requerido (string) the platform this device operates within, must be either 'ios', 'android', 'mac', or 'windows'
device[token] requerido (string) the unique identifier provided by the platform for notifications
device[location_token] (string) the unique identifier provided by iOS for location notifications, only allowed for ios devices and location pushes will start (or stop if set to null) within 5 minutes
device[notifications_enabled] (boolean) whether any notifications should be sent, defaults to true
device[on_reminder] (boolean) whether any reminder notifications should be sent, defaults to true
device[deliver_status_notifications] (boolean) whether automatic status update notifications should be sent, defaults to true
device[active_time_attributes][enabled] (boolean) whether active time is enabled, defaults to false
device[active_time_attributes][time_range] (string) time range in 24h time with .. delimiter (example: 6:00..17:00), required if enabled is true
device[active_time_attributes][time_zone] (string) one of our supported time zone strings, required if enabled is true
device[active_time_attributes][wdays] (string) days that are active for start time in the format '0123456', which each number equal to a weekday (0=Sunday, 1=Monday, etc), required if enabled is true
device[active_time_attributes][on_push] (boolean) whether active time is used for followed user notifications, defaults to true
device[active_time_attributes][on_reminder] (boolean) whether active time is used for reminder notifications, defaults to true
device[active_time_attributes][on_safety] (boolean) whether active time is used for safety notifications, defaults to true
device[active_time_attributes][on_update] (boolean) whether active time is used for automatic updates, defaults to true

Solicitud

Ruta

POST /api/v4/devices

Encabezados

Content-Type: application/json
Authorization: Bearer 8ArSXhXdwRGISR5ZOf8jEqSSy9T9xnntu_6sLOSlEoA

Cuerpo

{
  "device": {
    "os": "ios",
    "token": "E3BD4AF8-996A-4B26-8821-F9708213A971",
    "notifications_enabled": true,
    "active_time_attributes": {
      "enabled": false
    }
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/devices" -d '{"device":{"os":"ios","token":"E3BD4AF8-996A-4B26-8821-F9708213A971","notifications_enabled":true,"active_time_attributes":{"enabled":false}}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer 8ArSXhXdwRGISR5ZOf8jEqSSy9T9xnntu_6sLOSlEoA"

Respuesta

Simulated Response

Campos de respuesta

Name Description
devices (object) the newly created device attributes

Estado

201

Encabezados

etag: W/"6ed34df9a26dcc340fdcef221863b5ca"

Cuerpo

{
  "devices": {
    "id": "42",
    "token": "E3BD4AF8-996A-4B26-8821-F9708213A971",
    "location_token": null,
    "os": "ios",
    "notifications_enabled": true,
    "on_announcement": true,
    "on_reminder": true,
    "deliver_status_notifications": true,
    "follow_everyone": false,
    "follow_users": [],
    "active_time": {
      "enabled": false,
      "on_announcement": true,
      "on_push": true,
      "on_reminder": true,
      "on_safety": true,
      "on_update": true,
      "wdays": null,
      "time_range": null,
      "time_zone": null
    },
    "created_at": 1777391201,
    "updated_at": 1777391201
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1771087601,
      "beacons": 1772297201,
      "desktop_presences": 1774280801,
      "favorites": 1769532401,
      "fences": 1774280801,
      "groups": 1775144801,
      "networks": 1770914801,
      "roles": 1777391201,
      "settings": 1777391201
    },
    "emergency": null,
    "update_available": false
  }
}

Delete a device

Deletes an existing device.

Punto de llegada

DELETE /api/v4/devices/:id

Solicitud

Ruta

DELETE /api/v4/devices/46

Encabezados

Content-Type: application/json
Authorization: Bearer JwD4osIoJXmhgftHPh6sEmd8s9hLLtzmQn-U2pRkfMM

cURL

curl "https://www.simpleinout.com/api/v4/devices/46" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer JwD4osIoJXmhgftHPh6sEmd8s9hLLtzmQn-U2pRkfMM"

Respuesta

Simulated Response

Estado

204

Delete a heart beat

Deletes the device’s heart beat to prevent status updates after automatic updates are disabled.

Punto de llegada

DELETE /api/v4/devices/:device_id/heart_beat

Solicitud

Ruta

DELETE /api/v4/devices/44/heart_beat

Encabezados

Content-Type: application/json
Authorization: Bearer gEB1gStgIxvKxmgM02_Gh7kdONxX8TsscdNymgIfBVM

cURL

curl "https://www.simpleinout.com/api/v4/devices/44/heart_beat" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer gEB1gStgIxvKxmgM02_Gh7kdONxX8TsscdNymgIfBVM"

Respuesta

Simulated Response

Estado

204

Follow a specific user

Receive notifications on this device for all users in the company. Users must have a role that permits following users, and the company must be on a plan that allows for followed user notifications.

Punto de llegada

POST /api/v4/devices/:id/follow/users/:user_id

Solicitud

Ruta

POST /api/v4/devices/39/follow/users/1580

Encabezados

Content-Type: application/json
Authorization: Bearer 1sMRurTxkDA2b_I0kdhSMCf6fBZ05ANvY5DivLAmB8Y

cURL

curl "https://www.simpleinout.com/api/v4/devices/39/follow/users/1580" -d '' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer 1sMRurTxkDA2b_I0kdhSMCf6fBZ05ANvY5DivLAmB8Y"

Respuesta

Simulated Response

Campos de respuesta

Name Description
devices (object) the device attributes

Estado

200

Encabezados

etag: W/"3655a7ec4e52d701f684673b5385f172"

Cuerpo

{
  "devices": {
    "id": "39",
    "token": "5B4C2BAF-315C-44E6-A1DE-3108DD6F87DF",
    "location_token": null,
    "os": "ios",
    "notifications_enabled": true,
    "on_announcement": true,
    "on_reminder": true,
    "deliver_status_notifications": true,
    "follow_everyone": false,
    "follow_users": [
      "1580"
    ],
    "active_time": {
      "enabled": false,
      "on_announcement": true,
      "on_push": true,
      "on_reminder": true,
      "on_safety": true,
      "on_update": true,
      "wdays": "12345",
      "time_range": "6:00..19:00",
      "time_zone": "America/Chicago"
    },
    "created_at": 1777391201,
    "updated_at": 1777391201
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1775922401,
      "beacons": 1774972001,
      "desktop_presences": 1773244001,
      "favorites": 1772210801,
      "fences": 1776959201,
      "groups": 1770482801,
      "networks": 1772815601,
      "roles": 1777391201,
      "settings": 1777391201
    },
    "emergency": null,
    "update_available": false
  }
}

Follow all users

Punto de llegada

POST /api/v4/devices/:id/follow/all

Solicitud

Ruta

POST /api/v4/devices/38/follow/all

Encabezados

Content-Type: application/json
Authorization: Bearer mtlRXWdpkNRIbS3jooccWX7YM9L22sVa8GIWNWYg0FA

cURL

curl "https://www.simpleinout.com/api/v4/devices/38/follow/all" -d '' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer mtlRXWdpkNRIbS3jooccWX7YM9L22sVa8GIWNWYg0FA"

Respuesta

Simulated Response

Campos de respuesta

Name Description
devices (object) the newly created device attributes

Estado

200

Encabezados

etag: W/"66176186ce12aeb0fd44d4c3e35314d4"

Cuerpo

{
  "devices": {
    "id": "38",
    "token": "73253810-312B-47C4-838B-8831E4AC08B6",
    "location_token": null,
    "os": "ios",
    "notifications_enabled": true,
    "on_announcement": true,
    "on_reminder": true,
    "deliver_status_notifications": true,
    "follow_everyone": true,
    "follow_users": [],
    "active_time": {
      "enabled": false,
      "on_announcement": true,
      "on_push": true,
      "on_reminder": true,
      "on_safety": true,
      "on_update": true,
      "wdays": "12345",
      "time_range": "6:00..19:00",
      "time_zone": "America/Chicago"
    },
    "created_at": 1777391201,
    "updated_at": 1777391201
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1771865200,
      "beacons": 1770050800,
      "desktop_presences": 1774021600,
      "favorites": 1769964400,
      "fences": 1773762400,
      "groups": 1776872800,
      "networks": 1774280800,
      "roles": 1777391201,
      "settings": 1777391201
    },
    "emergency": null,
    "update_available": false
  }
}

Follow specific users

Receive notifications on this device for all users passed in. This allows for several users to be able to be followed individually within one API call. Please note you can only follow a user once, otherwise you will receive a taken validation error. Users must have a role that permits following users, and the company must be on a plan that allows for followed user notifications.

Punto de llegada

POST /api/v4/devices/:id/follow/users

Parametros

Name Description
user_ids (array) list of user ids within the authorized user's company (cannot be the authorized user's id)

Solicitud

Ruta

POST /api/v4/devices/40/follow/users

Encabezados

Content-Type: application/json
Authorization: Bearer YTPl7fA77C5XViydJRmVEEj6MZC4A5ntPRjX17qm_8I

Cuerpo

{
  "user_ids": [
    1582,
    1583
  ]
}

cURL

curl "https://www.simpleinout.com/api/v4/devices/40/follow/users" -d '{"user_ids":[1582,1583]}' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer YTPl7fA77C5XViydJRmVEEj6MZC4A5ntPRjX17qm_8I"

Respuesta

Simulated Response

Campos de respuesta

Name Description
devices (object) the device attributes

Estado

200

Encabezados

etag: W/"1d9a8204aa8ca52cabbb4398e1f18ae0"

Cuerpo

{
  "devices": {
    "id": "40",
    "token": "EDD6A1E3-07CF-45E7-A1F1-6BB039786AF4",
    "location_token": null,
    "os": "ios",
    "notifications_enabled": true,
    "on_announcement": true,
    "on_reminder": true,
    "deliver_status_notifications": true,
    "follow_everyone": false,
    "follow_users": [
      "1582",
      "1583"
    ],
    "active_time": {
      "enabled": false,
      "on_announcement": true,
      "on_push": true,
      "on_reminder": true,
      "on_safety": true,
      "on_update": true,
      "wdays": "12345",
      "time_range": "6:00..19:00",
      "time_zone": "America/Chicago"
    },
    "created_at": 1777391201,
    "updated_at": 1777391201
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1771174001,
      "beacons": 1776700001,
      "desktop_presences": 1775058401,
      "favorites": 1775749601,
      "fences": 1774108001,
      "groups": 1776095201,
      "networks": 1768927601,
      "roles": 1777391201,
      "settings": 1777391201
    },
    "emergency": null,
    "update_available": false
  }
}

Retrieve a device

Retrieves an existing device.

Punto de llegada

GET /api/v4/devices/:id

Solicitud

Ruta

GET /api/v4/devices/37

Encabezados

Content-Type: application/json
Authorization: Bearer VlPZJ0Xe2HUQHSlXMUu_rDAD40vLpbRvV0Lb59JmsNQ
If-None-Match: 

cURL

curl -g "https://www.simpleinout.com/api/v4/devices/37" -X GET \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer VlPZJ0Xe2HUQHSlXMUu_rDAD40vLpbRvV0Lb59JmsNQ" \
	-H "If-None-Match: "

Respuesta

Simulated Response

Campos de respuesta

Name Description
devices (object) the retrieved device

Estado

200

Encabezados

etag: W/"ac0fb3c361729680100176bd06930716"

Cuerpo

{
  "devices": {
    "id": "37",
    "token": "E70128E5-B264-4C75-9F54-11D1D7626609",
    "location_token": null,
    "os": "ios",
    "notifications_enabled": true,
    "on_announcement": true,
    "on_reminder": true,
    "deliver_status_notifications": true,
    "follow_everyone": false,
    "follow_users": [],
    "active_time": {
      "enabled": false,
      "on_announcement": true,
      "on_push": true,
      "on_reminder": true,
      "on_safety": true,
      "on_update": true,
      "wdays": "12345",
      "time_range": "6:00..19:00",
      "time_zone": "America/Chicago"
    },
    "created_at": 1777391200,
    "updated_at": 1777391200
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1771087600,
      "beacons": 1775922400,
      "desktop_presences": 1777304800,
      "favorites": 1769446000,
      "fences": 1775749600,
      "groups": 1773676000,
      "networks": 1774194400,
      "roles": 1777391200,
      "settings": 1777391200
    },
    "emergency": null,
    "update_available": false
  }
}

Retrieve followed users

Retrieves an array of users that this device follows. This list always contains only the ‘id’ and ‘name’ of the user in alphabetic order according to name.

Punto de llegada

GET /api/v4/devices/:id/follow/users/followed

Solicitud

Ruta

GET /api/v4/devices/36/follow/users/followed

Encabezados

Content-Type: application/json
Authorization: Bearer x2neD7QsvolP1aSPtkNgnozf5iRP_t7xLkjwqNVXOVs

cURL

curl -g "https://www.simpleinout.com/api/v4/devices/36/follow/users/followed" -X GET \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer x2neD7QsvolP1aSPtkNgnozf5iRP_t7xLkjwqNVXOVs"

Respuesta

Simulated Response

Campos de respuesta

Name Description
users (object) the retrieved users, only including their 'id' and 'name' fields

Estado

200

Encabezados

etag: W/"8cce967fa38c8fd3cec6f78cb7133415"

Cuerpo

{
  "users": [
    {
      "id": "1576",
      "name": "Gregory Bashirian"
    },
    {
      "id": "1574",
      "name": "Joey Schiller"
    },
    {
      "id": "1575",
      "name": "Karoline Kautzer"
    },
    {
      "id": "1573",
      "name": "Luciano Nolan"
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 4,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/devices/36/follow/users/followed?id=36",
      "last_href": "http://example.org/api/v4/devices/36/follow/users/followed?id=36",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1775144800,
      "beacons": 1769878000,
      "desktop_presences": 1769100400,
      "favorites": 1769618800,
      "fences": 1771346800,
      "groups": 1770482800,
      "networks": 1776095200,
      "roles": 1777391200,
      "settings": 1777391200
    },
    "emergency": null,
    "update_available": false
  }
}

Retrieve unfollowed users

Retrieves an array of users that this device does not yet follow. This list always contains only the ‘id’ and ‘name’ of the user in alphabetic order according to name.

Punto de llegada

GET /api/v4/devices/:id/follow/users/available

Solicitud

Ruta

GET /api/v4/devices/41/follow/users/available

Encabezados

Content-Type: application/json
Authorization: Bearer zuNtux_iiA-1piw62xJ-sjoynj32hV4DLnI3QqNhA98

cURL

curl -g "https://www.simpleinout.com/api/v4/devices/41/follow/users/available" -X GET \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer zuNtux_iiA-1piw62xJ-sjoynj32hV4DLnI3QqNhA98"

Respuesta

Simulated Response

Campos de respuesta

Name Description
users (object) the retrieved users, only including their 'id' and 'name' fields

Estado

200

Encabezados

etag: W/"a437e89336f8cf2e8ab3101ba31aaae4"

Cuerpo

{
  "users": [
    {
      "id": "1585",
      "name": "Gov. Deann Bins"
    },
    {
      "id": "1587",
      "name": "Jenae Cassin"
    },
    {
      "id": "1586",
      "name": "Kesha Bernier"
    },
    {
      "id": "1588",
      "name": "Rachel Windler"
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 4,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/devices/41/follow/users/available?id=41",
      "last_href": "http://example.org/api/v4/devices/41/follow/users/available?id=41",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1775404001,
      "beacons": 1776008801,
      "desktop_presences": 1770050801,
      "favorites": 1775663201,
      "fences": 1770050801,
      "groups": 1773244001,
      "networks": 1776268001,
      "roles": 1777391201,
      "settings": 1777391201
    },
    "emergency": null,
    "update_available": false
  }
}

Unfollow a specific user

Stop receiving notifications on this device for all users in the company. Users must have a role that permits following users, and the company must be on a plan that allows for followed user notifications.

Punto de llegada

DELETE /api/v4/devices/:id/follow/users/:user_id

Solicitud

Ruta

DELETE /api/v4/devices/43/follow/users/1591

Encabezados

Content-Type: application/json
Authorization: Bearer vccmB9m8Kg70Nts0_U-KoZTKp5uSOZmrORPV2GABFG4

cURL

curl "https://www.simpleinout.com/api/v4/devices/43/follow/users/1591" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer vccmB9m8Kg70Nts0_U-KoZTKp5uSOZmrORPV2GABFG4"

Respuesta

Simulated Response

Campos de respuesta

Name Description
devices (object) the device attributes

Estado

200

Encabezados

etag: W/"e2aa9d4e8e6f4a0c508bcaeb1473f749"

Cuerpo

{
  "devices": {
    "id": "43",
    "token": "4BB51E45-4365-4762-9326-F578B888BEE8",
    "location_token": null,
    "os": "ios",
    "notifications_enabled": true,
    "on_announcement": true,
    "on_reminder": true,
    "deliver_status_notifications": true,
    "follow_everyone": false,
    "follow_users": [],
    "active_time": {
      "enabled": false,
      "on_announcement": true,
      "on_push": true,
      "on_reminder": true,
      "on_safety": true,
      "on_update": true,
      "wdays": "12345",
      "time_range": "6:00..19:00",
      "time_zone": "America/Chicago"
    },
    "created_at": 1777391201,
    "updated_at": 1777391201
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1773762401,
      "beacons": 1774021601,
      "desktop_presences": 1776354401,
      "favorites": 1776440801,
      "fences": 1771001201,
      "groups": 1772297201,
      "networks": 1770742001,
      "roles": 1777391201,
      "settings": 1777391201
    },
    "emergency": null,
    "update_available": false
  }
}

Unfollow all users

Stop receiving notifications on this device for all users in the company. Users must have a role that permits following users, and the company must be on a plan that allows for followed user notifications.

Punto de llegada

DELETE /api/v4/devices/:id/follow/all

Solicitud

Ruta

DELETE /api/v4/devices/35/follow/all

Encabezados

Content-Type: application/json
Authorization: Bearer byQDKuA__nikLYuRxxHhGRcsU_NOXHhFzPRC0jy8fl8

cURL

curl "https://www.simpleinout.com/api/v4/devices/35/follow/all" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer byQDKuA__nikLYuRxxHhGRcsU_NOXHhFzPRC0jy8fl8"

Respuesta

Simulated Response

Estado

200

Encabezados

etag: W/"70d2cd9d87fb0b2cb0aeb8b8b51bdf4a"

Cuerpo

{
  "devices": {
    "id": "35",
    "token": "AE15FD80-E93E-478C-9D67-2CAB230CFDF1",
    "location_token": null,
    "os": "ios",
    "notifications_enabled": true,
    "on_announcement": true,
    "on_reminder": true,
    "deliver_status_notifications": true,
    "follow_everyone": false,
    "follow_users": [],
    "active_time": {
      "enabled": false,
      "on_announcement": true,
      "on_push": true,
      "on_reminder": true,
      "on_safety": true,
      "on_update": true,
      "wdays": "12345",
      "time_range": "6:00..19:00",
      "time_zone": "America/Chicago"
    },
    "created_at": 1777391200,
    "updated_at": 1777391200
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1775922400,
      "beacons": 1776008800,
      "desktop_presences": 1773416800,
      "favorites": 1772470000,
      "fences": 1774799200,
      "groups": 1775836000,
      "networks": 1776008800,
      "roles": 1777391200,
      "settings": 1777391200
    },
    "emergency": null,
    "update_available": false
  }
}

Unfollow specific users

Exclude notifications on this device for all users passed in. This allows for several users to be able to be unfollowed individually within one API call. Users must have a role that permits following users, and the company must be on a plan that allows for followed user notifications.

Punto de llegada

DELETE /api/v4/devices/:id/follow/users

Parametros

Name Description
user_ids (array) list of user ids within the authorized user's company (cannot be the authorized user's id)

Solicitud

Ruta

DELETE /api/v4/devices/45/follow/users

Encabezados

Content-Type: application/json
Authorization: Bearer S2gxS6BXKB6MIz-f5LvZJ8kkhp8f9e4khNxAs_5pIsg

Cuerpo

{
  "user_ids": [
    1594,
    1595
  ]
}

cURL

curl "https://www.simpleinout.com/api/v4/devices/45/follow/users" -d '{"user_ids":[1594,1595]}' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer S2gxS6BXKB6MIz-f5LvZJ8kkhp8f9e4khNxAs_5pIsg"

Respuesta

Simulated Response

Campos de respuesta

Name Description
devices (object) the device attributes

Estado

200

Encabezados

etag: W/"ea36c9cf3baa5ffc04c096724b53993d"

Cuerpo

{
  "devices": {
    "id": "45",
    "token": "462E47DB-AFC5-429E-84CF-931455C550A4",
    "location_token": null,
    "os": "ios",
    "notifications_enabled": true,
    "on_announcement": true,
    "on_reminder": true,
    "deliver_status_notifications": true,
    "follow_everyone": false,
    "follow_users": [],
    "active_time": {
      "enabled": false,
      "on_announcement": true,
      "on_push": true,
      "on_reminder": true,
      "on_safety": true,
      "on_update": true,
      "wdays": "12345",
      "time_range": "6:00..19:00",
      "time_zone": "America/Chicago"
    },
    "created_at": 1777391202,
    "updated_at": 1777391202
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1771433201,
      "beacons": 1773157601,
      "desktop_presences": 1770914801,
      "favorites": 1775058401,
      "fences": 1775231201,
      "groups": 1772124401,
      "networks": 1776786401,
      "roles": 1777391202,
      "settings": 1777391202
    },
    "emergency": null,
    "update_available": false
  }
}

Update a device

Updates an existing device. If the device token is removed with an update, all the users that this device was following for notifications will also be removed.

Punto de llegada

PATCH /api/v4/devices/:id

Parametros

Name Description
device[token] (string) the unique identifier provided by the platform for notifications
device[location_token] (string) the unique identifier provided by iOS for location notifications, only allowed for ios devices and location pushes will start (or stop if set to null) within 5 minutes
device[notifications_enabled] (boolean) whether any notifications should be sent
device[on_reminder] (boolean) whether any reminder notifications should be sent
device[deliver_status_notifications] (boolean) whether automatic status update notifications should be sent
device[active_time_attributes][enabled] (boolean) whether active time is enabled, defaults to false
device[active_time_attributes][time_range] (string) time range in 24h time with .. delimiter (example: 6:00..17:00), required if enabled is true
device[active_time_attributes][time_zone] (string) one of our supported time zone strings, required if enabled is true
device[active_time_attributes][wdays] (string) days that are active for start time in the format '0123456', which each number equal to a weekday (0=Sunday, 1=Monday, etc), required if enabled is true
device[active_time_attributes][on_push] (boolean) whether active time is used for followed user notifications, defaults to true
device[active_time_attributes][on_reminder] (boolean) whether active time is used for reminder notifications, defaults to true
device[active_time_attributes][on_safety] (boolean) whether active time is used for safety notifications, defaults to true
device[active_time_attributes][on_update] (boolean) whether active time is used for automatic updates, defaults to true

Solicitud

Ruta

PATCH /api/v4/devices/47

Encabezados

Content-Type: application/json
Authorization: Bearer 8wT_BBIy9g5IcJnpCOUD7DN1XgklmvR-k825cN7D91Y

Cuerpo

{
  "device": {
    "notifications_enabled": true
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/devices/47" -d '{"device":{"notifications_enabled":true}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer 8wT_BBIy9g5IcJnpCOUD7DN1XgklmvR-k825cN7D91Y"

Respuesta

Simulated Response

Campos de respuesta

Name Description
devices (object) the newly created device attributes

Estado

200

Encabezados

etag: W/"0b5c5cfe5a0c5075231dbc72e8e75cb5"

Cuerpo

{
  "devices": {
    "id": "47",
    "token": "522486AE-F4A4-4FEA-B85B-45993777EB29",
    "location_token": null,
    "os": "ios",
    "notifications_enabled": true,
    "on_announcement": true,
    "on_reminder": true,
    "deliver_status_notifications": true,
    "follow_everyone": false,
    "follow_users": [],
    "active_time": {
      "enabled": false,
      "on_announcement": true,
      "on_push": true,
      "on_reminder": true,
      "on_safety": true,
      "on_update": true,
      "wdays": "12345",
      "time_range": "6:00..19:00",
      "time_zone": "America/Chicago"
    },
    "created_at": 1777391202,
    "updated_at": 1777391202
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1775317602,
      "beacons": 1775058402,
      "desktop_presences": 1776786402,
      "favorites": 1772984802,
      "fences": 1771692402,
      "groups": 1771433202,
      "networks": 1769618802,
      "roles": 1777391202,
      "settings": 1777391202
    },
    "emergency": null,
    "update_available": false
  }
}

Emergency

Clear company emergency message

Clears the company’s emergency message. Users must have a role that permits managing the company to clear the emergency message.

Punto de llegada

DELETE /api/v4/emergency

Solicitud

Ruta

DELETE /api/v4/emergency

Encabezados

Content-Type: application/json
Authorization: Bearer ROD1ewU9NWS0WpI38prajiQkZLV2o1xAt9_ah5hOM2U

cURL

curl "https://www.simpleinout.com/api/v4/emergency" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer ROD1ewU9NWS0WpI38prajiQkZLV2o1xAt9_ah5hOM2U"

Respuesta

Simulated Response

Estado

204

Set or clear company emergency message

Sets or clears the company’s emergency message. Send a string to set the message; send an empty string or omit the parameter to clear it. Users must have a role that permits managing the company to set or clear the emergency message.

Punto de llegada

POST /api/v4/emergency

Parametros

Name Description
message (string) the emergency message to display for the company, or omit/empty to clear

Solicitud

Ruta

POST /api/v4/emergency

Encabezados

Content-Type: application/json
Authorization: Bearer B10O10aZESlDS5kv7hs0B8-7bcjMUE-ka7ve4VhLjPs

Cuerpo

{
  "message": "Building closed due to weather. Work remotely today."
}

cURL

curl "https://www.simpleinout.com/api/v4/emergency" -d '{"message":"Building closed due to weather. Work remotely today."}' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer B10O10aZESlDS5kv7hs0B8-7bcjMUE-ka7ve4VhLjPs"

Respuesta

Simulated Response

Estado

204

Futures

Delete a future status

Deletes an existing scheduled status. The company must have scheduled statuses turned on. Users must have a role that permits managing their own scheduled statuses to delete one of their scheduled statuses. Users must have a role that permits managing the scheduled statuses of others to delete another user’s scheduled status.

Punto de llegada

DELETE /api/v4/futures/:id

Solicitud

Ruta

DELETE /api/v4/futures/53

Encabezados

Content-Type: application/json
Authorization: Bearer ZQdjTlz6LqzbPCZSQW_v322ejYvwrnhoBorW5Edihmw

cURL

curl "https://www.simpleinout.com/api/v4/futures/53" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer ZQdjTlz6LqzbPCZSQW_v322ejYvwrnhoBorW5Edihmw"

Respuesta

Simulated Response

Estado

204

List future statuses

List all the scheduled statuses. The company must have scheduled statuses turned on. Users must have a role that permits viewing the scheduled statuses of others or only the authorized user’s scheduled statuses will be returned.

Punto de llegada

GET /api/v4/futures

Parametros

Name Description
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results
status (string) the status: 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
comment (string) the comment, case sensitive, included with the status change
apply_at (string) a date range string for the time this status will be added
user_id (string) the ID of a particular user
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'apply_at', 'status', 'comment'"
sort_locale (string) the locale to use when sorting by comment, defaults to English (US)
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user', 'changed_by_user'

Solicitud

Ruta

GET /api/v4/futures

Encabezados

Content-Type: application/json
Authorization: Bearer zeWh5-otuGTCY4mYMSVZTS78CkCY6kjOj6uLdsONXnU

cURL

curl -g "https://www.simpleinout.com/api/v4/futures" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer zeWh5-otuGTCY4mYMSVZTS78CkCY6kjOj6uLdsONXnU"

Respuesta

Simulated Response

Campos de respuesta

Name Description
futures (array) an array of matching future statuses

Estado

200

Encabezados

etag: W/"224d68dae180ee09e186f0ba00e5dfaf"
last-modified: Tue, 28 Apr 2026 15:46:40 GMT

Cuerpo

{
  "futures": [
    {
      "id": "54",
      "status": "out",
      "comment": "On Vacation, back Monday",
      "completed": false,
      "apply_at": 1779980400,
      "end_at": 1780239600,
      "user_id": "1562",
      "changed_by_user_id": null
    },
    {
      "id": "55",
      "status": "out",
      "comment": "At the conference this week",
      "completed": false,
      "apply_at": 1793199600,
      "end_at": null,
      "user_id": "1562",
      "changed_by_user_id": null
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 2,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/futures",
      "last_href": "http://example.org/api/v4/futures",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1776872800,
      "beacons": 1769100400,
      "desktop_presences": 1770569200,
      "favorites": 1769186800,
      "fences": 1777045600,
      "groups": 1772297200,
      "networks": 1777045600,
      "roles": 1777391200,
      "settings": 1777391200
    },
    "emergency": null
  }
}

Geofences

Create a fence

Creates a new fence. Once this fence is created, it will appear in the company’s fences within the Simple In/Out apps and website. Users must have a role that permits managing the company to create fences. Companies are limited to 150 Geofences.

Punto de llegada

POST /api/v4/fences

Parametros

Name Description
fence[name] requerido (string) the name of the fence
fence[latitude] requerido (float) the latitude of the center point of the fence
fence[longitude] requerido (float) the longitude of the center point of the fence
fence[radius] requerido (integer) the radius of the fence, in meters
fence[comment_on_entry] (string) the comment applied to status updates on entry, defaults to 'In at {name}'
fence[comment_on_exit] (string) the comment applied to status updates on exit, defaults to 'Left {name}'
fence[status_on_entry] (string) the status to apply on entry: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'in'
fence[status_on_exit] (string) the status to apply on exit: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'out'

Solicitud

Ruta

POST /api/v4/fences

Encabezados

Content-Type: application/json
Authorization: Bearer J6AqCqI5YajF4nv382xSkkP0RGyfUsDMCefiRtezWRE

Cuerpo

{
  "fence": {
    "name": "My Office",
    "latitude": 46.877931,
    "longitude": -96.787459,
    "radius": 150
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/fences" -d '{"fence":{"name":"My Office","latitude":46.877931,"longitude":-96.787459,"radius":150}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer J6AqCqI5YajF4nv382xSkkP0RGyfUsDMCefiRtezWRE"

Respuesta

Simulated Response

Campos de respuesta

Name Description
fences (object) the newly created fence attributes

Estado

201

Encabezados

etag: W/"a9154a2df503e6aefdd25abfa81ed752"

Cuerpo

{
  "fences": {
    "id": "4",
    "name": "My Office",
    "latitude": "46.877931",
    "longitude": "-96.787459",
    "radius": 150,
    "comment_on_entry": "In at My Office",
    "comment_on_exit": "Left My Office",
    "entry": true,
    "exit": true,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "created_at": 1777391199,
    "updated_at": 1777391199
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1769100399,
      "beacons": 1770655599,
      "desktop_presences": 1772729199,
      "favorites": 1770309999,
      "fences": 1777391199,
      "groups": 1774626399,
      "networks": 1773675999,
      "roles": 1777391199,
      "settings": 1777391199
    },
    "emergency": null
  }
}

Delete a fence

Deletes an existing fence. Users must have a role that permits managing the company to delete fences.

Punto de llegada

DELETE /api/v4/fences/:id

Solicitud

Ruta

DELETE /api/v4/fences/3

Encabezados

Content-Type: application/json
Authorization: Bearer kD7QojuttjVv12DB6QALCiHNoDDJ4r19FJ68VPck8AY

cURL

curl "https://www.simpleinout.com/api/v4/fences/3" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer kD7QojuttjVv12DB6QALCiHNoDDJ4r19FJ68VPck8AY"

Respuesta

Simulated Response

Estado

204

List all fences

Return a list of all the fences belonging to the company.

Punto de llegada

GET /api/v4/fences

Parametros

Name Description
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'name', 'radius
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results

Solicitud

Ruta

GET /api/v4/fences

Encabezados

Content-Type: application/json
Authorization: Bearer bzixCfJ7KFJnkCykPk2a6VidfpjhR5Sp9vNiWP-xKcc

cURL

curl -g "https://www.simpleinout.com/api/v4/fences" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer bzixCfJ7KFJnkCykPk2a6VidfpjhR5Sp9vNiWP-xKcc"

Respuesta

Simulated Response

Campos de respuesta

Name Description
fences (array) an array of fences

Estado

200

Encabezados

etag: W/"ddca91186bb8a67ead65921b723d2aeb"
last-modified: Tue, 28 Apr 2026 15:46:39 GMT

Cuerpo

{
  "fences": [
    {
      "id": "1",
      "name": "1 - Sammyhaven",
      "latitude": "7.7118098564",
      "longitude": "-32.7130898577",
      "radius": 3561,
      "comment_on_entry": "In at 1 - Sammyhaven",
      "comment_on_exit": "Left 1 - Sammyhaven",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1777391199,
      "updated_at": 1777391199
    },
    {
      "id": "2",
      "name": "2 - New Tomasborough",
      "latitude": "30.4537195595",
      "longitude": "95.2020546065",
      "radius": 16917,
      "comment_on_entry": "In at 2 - New Tomasborough",
      "comment_on_exit": "Left 2 - New Tomasborough",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1777391199,
      "updated_at": 1777391199
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 2,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/fences",
      "last_href": "http://example.org/api/v4/fences",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1773071199,
      "beacons": 1772729199,
      "desktop_presences": 1774107999,
      "favorites": 1773071199,
      "fences": 1777391199,
      "groups": 1776699999,
      "networks": 1772037999,
      "roles": 1777391199,
      "settings": 1777391199
    },
    "emergency": null
  }
}

Update a fence

Updates an existing fence. Users must have a role that permits managing the company to update fences.

Punto de llegada

PATCH /api/v4/fences/:id

Parametros

Name Description
fence[name] (string) the name of the fence
fence[latitude] (float) the latitude of the center point of the fence
fence[longitude] (float) the longitude of the center point of the fence
fence[radius] (integer) the radius of the fence, in meters
fence[comment_on_entry] (string) the comment applied to status updates on entry, defaults to 'In at {name}'
fence[comment_on_exit] (string) the comment applied to status updates on exit, defaults to 'Left {name}'
fence[status_on_entry] (string) the status to apply on entry: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'in'
fence[status_on_exit] (string) the status to apply on exit: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'out'

Solicitud

Ruta

PATCH /api/v4/fences/5

Encabezados

Content-Type: application/json
Authorization: Bearer eacMHdsAlMAMiCYhQYdOmC2K-02IpyTgeOapFsSKSbA

Cuerpo

{
  "fence": {
    "name": "My Renamed Geofence"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/fences/5" -d '{"fence":{"name":"My Renamed Geofence"}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer eacMHdsAlMAMiCYhQYdOmC2K-02IpyTgeOapFsSKSbA"

Respuesta

Simulated Response

Campos de respuesta

Name Description
fences (object) the newly updated fence attributes

Estado

200

Encabezados

etag: W/"bb71c1f3296529d7a48cfc518e4683fc"

Cuerpo

{
  "fences": {
    "id": "5",
    "name": "My Renamed Geofence",
    "latitude": "-46.0128468707",
    "longitude": "-43.0098608135",
    "radius": 9843,
    "comment_on_entry": "In at 4 - Leonelfurt",
    "comment_on_exit": "Left 4 - Leonelfurt",
    "entry": true,
    "exit": true,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "created_at": 1777391199,
    "updated_at": 1777391199
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1775663199,
      "beacons": 1772383599,
      "desktop_presences": 1770309999,
      "favorites": 1769791599,
      "fences": 1777391199,
      "groups": 1770914799,
      "networks": 1770655599,
      "roles": 1777391199,
      "settings": 1777391199
    },
    "emergency": null
  }
}

Groups

Create a group

Creates a new group. Once this group is created, it will appear in the company’s groups within the Simple In/Out apps and website. Users must have a role that permits managing groups/memberships to create groups. Companies are limited to 100 Groups.

Punto de llegada

POST /api/v4/groups

Parametros

Name Description
group[name] requerido (string) the name of the group

Solicitud

Ruta

POST /api/v4/groups

Encabezados

Content-Type: application/json
Authorization: Bearer _iRiLa0YXke6fPIWtZe12PMINaRm3ASaJuqUJy_tGng

Cuerpo

{
  "group": {
    "name": "New Department"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/groups" -d '{"group":{"name":"New Department"}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer _iRiLa0YXke6fPIWtZe12PMINaRm3ASaJuqUJy_tGng"

Respuesta

Simulated Response

Campos de respuesta

Name Description
groups (object) the newly created group attributes

Estado

201

Encabezados

etag: W/"97c809b0af4aebc580b6b7759959c332"

Cuerpo

{
  "groups": {
    "id": "68",
    "name": "New Department"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1771260396,
      "beacons": 1775922396,
      "desktop_presences": 1773503196,
      "favorites": 1773935196,
      "fences": 1773416796,
      "groups": 1777391196,
      "networks": 1775922396,
      "roles": 1777391196,
      "settings": 1777391196
    },
    "emergency": null
  }
}

Delete a group

Deletes an existing group. Users must have a role that permits managing groups/memberships to delete groups.

Punto de llegada

DELETE /api/v4/groups/:id

Solicitud

Ruta

DELETE /api/v4/groups/70

Encabezados

Content-Type: application/json
Authorization: Bearer W0o3Fr_bIVWf9u54hCep6AHvzsoXxUazttb-2fPBw9g

cURL

curl "https://www.simpleinout.com/api/v4/groups/70" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer W0o3Fr_bIVWf9u54hCep6AHvzsoXxUazttb-2fPBw9g"

Respuesta

Simulated Response

Estado

204

List all groups

Return a list of all the groups belonging to the company.

Punto de llegada

GET /api/v4/groups

Parametros

Name Description
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'name'
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results

Solicitud

Ruta

GET /api/v4/groups

Encabezados

Content-Type: application/json
Authorization: Bearer _z1hTq1rj4ul9sd4AeA73Su-krq0SylDZ0MeRrq0nBk

cURL

curl -g "https://www.simpleinout.com/api/v4/groups" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer _z1hTq1rj4ul9sd4AeA73Su-krq0SylDZ0MeRrq0nBk"

Respuesta

Simulated Response

Campos de respuesta

Name Description
groups (array) an array of groups

Estado

200

Encabezados

etag: W/"ea0b4308e93d3cb04b53c60af29449ad"
last-modified: Tue, 28 Apr 2026 15:46:36 GMT

Cuerpo

{
  "groups": [
    {
      "id": "66",
      "name": "Murazik-Kutch2"
    },
    {
      "id": "67",
      "name": "Labadie and Sons3"
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 2,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/groups",
      "last_href": "http://example.org/api/v4/groups",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1775403996,
      "beacons": 1773243996,
      "desktop_presences": 1775663196,
      "favorites": 1777131996,
      "fences": 1776181596,
      "groups": 1777391196,
      "networks": 1771865196,
      "roles": 1777391196,
      "settings": 1777391196
    },
    "emergency": null
  }
}

Update a group

Updates an existing group. Users must have a role that permits managing groups/memberships to update groups.

Punto de llegada

PATCH /api/v4/groups/:id

Parametros

Name Description
group[name] (string) the name of the group

Solicitud

Ruta

PATCH /api/v4/groups/69

Encabezados

Content-Type: application/json
Authorization: Bearer BQ4lvLf4u0uh0mDNoCZeJt0bMQQCv1r6CBUlTFODHhs

Cuerpo

{
  "group": {
    "name": "Renamed Department"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/groups/69" -d '{"group":{"name":"Renamed Department"}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer BQ4lvLf4u0uh0mDNoCZeJt0bMQQCv1r6CBUlTFODHhs"

Respuesta

Simulated Response

Campos de respuesta

Name Description
groups (object) the newly updated group attributes

Estado

200

Encabezados

etag: W/"b95b7d1fae0462b369b52a0b48a4363e"

Cuerpo

{
  "groups": {
    "id": "69",
    "name": "Renamed Department"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1769877996,
      "beacons": 1769877996,
      "desktop_presences": 1776699996,
      "favorites": 1768927596,
      "fences": 1776959196,
      "groups": 1777391196,
      "networks": 1771001196,
      "roles": 1777391196,
      "settings": 1777391196
    },
    "emergency": null
  }
}

Keys

List all keys

Retrieve the secret API keys needed for the authorized application. This API can be accessed with user credentials or user-less client credentials, and you must have executive scope (Simply Made Apps only).

Punto de llegada

GET /api/v4/keys

Solicitud

Ruta

GET /api/v4/keys

Encabezados

Content-Type: application/json
Authorization: Bearer f30kXTVoICRq0JrKTJ9RPT_xiF4jGZJFUiJkU1y8kNg

cURL

curl -g "https://www.simpleinout.com/api/v4/keys" -X GET \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer f30kXTVoICRq0JrKTJ9RPT_xiF4jGZJFUiJkU1y8kNg"

Respuesta

Simulated Response

Estado

200

Encabezados

etag: W/"6c2d7c231405feecdfd70774e47b5535"

Cuerpo

{
  "keys": {
    "MY_SECRET_KEY": "abc1234567",
    "ANOTHER_KEY": "xyz0987654321"
  }
}

Networks

Create a network

Creates a new network. Once this network is created, it will appear in the company’s networks within the Simple In/Out apps. Users must have a role that permits managing the company to create networks. Companies are limited to 100 Networks.

Punto de llegada

POST /api/v4/networks

Parametros

Name Description
network[name] requerido (string) the name of the network, no longer than 44 characters
network[ssid] requerido (string) the unique network identifier, no longer than 250 characters
network[comment_on_entry] (string) the comment applied to status updates on entry, defaults to 'In at {name}'
network[comment_on_exit] (string) the comment applied to status updates on exit, defaults to 'Left {name}'
network[status_on_entry] (string) the status to apply on entry: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'in'
network[status_on_exit] (string) the status to apply on exit: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'out'
network[nodes] (array) an array of BSSIDs that are the only network equipment associated with this network (if empty all networks with this SSID are valid)

Solicitud

Ruta

POST /api/v4/networks

Encabezados

Content-Type: application/json
Authorization: Bearer IcHV76gO10ozGEch3AJn-CKrgC0Z5w87Mjib9XWUHvU

Cuerpo

{
  "network": {
    "name": "My Office",
    "ssid": "Office WiFi Hotspot",
    "nodes": [
      "00:1A:2B:3C:4D:5E",
      "00:1A:2B:3C:4D:5F"
    ]
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/networks" -d '{"network":{"name":"My Office","ssid":"Office WiFi Hotspot","nodes":["00:1A:2B:3C:4D:5E","00:1A:2B:3C:4D:5F"]}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer IcHV76gO10ozGEch3AJn-CKrgC0Z5w87Mjib9XWUHvU"

Respuesta

Simulated Response

Campos de respuesta

Name Description
networks (object) the newly created network attributes

Estado

201

Encabezados

etag: W/"7acae536ae765de582c7f2f2df3b120b"

Cuerpo

{
  "networks": {
    "id": "45",
    "name": "My Office",
    "ssid": "Office WiFi Hotspot",
    "comment_on_entry": "In at My Office",
    "comment_on_exit": "Left My Office",
    "entry": true,
    "exit": true,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "nodes": [
      "00:1A:2B:3C:4D:5E",
      "00:1A:2B:3C:4D:5F"
    ],
    "created_at": 1777391200,
    "updated_at": 1777391200
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1777045600,
      "beacons": 1773416800,
      "desktop_presences": 1774799200,
      "favorites": 1775922400,
      "fences": 1773848800,
      "groups": 1775490400,
      "networks": 1777391200,
      "roles": 1777391200,
      "settings": 1777391200
    },
    "emergency": null
  }
}

Delete a network

Deletes an existing network. Users must have a role that permits managing the company to delete networks.

Punto de llegada

DELETE /api/v4/networks/:id

Solicitud

Ruta

DELETE /api/v4/networks/44

Encabezados

Content-Type: application/json
Authorization: Bearer oOuZUz4TKYDXX3XmJBGzCXS-_RNy4q9kCV1tKHkfaX4

cURL

curl "https://www.simpleinout.com/api/v4/networks/44" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer oOuZUz4TKYDXX3XmJBGzCXS-_RNy4q9kCV1tKHkfaX4"

Respuesta

Simulated Response

Estado

204

List all networks

Return a list of all the networks belonging to the company.

Punto de llegada

GET /api/v4/networks

Parametros

Name Description
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'name'
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results

Solicitud

Ruta

GET /api/v4/networks

Encabezados

Content-Type: application/json
Authorization: Bearer qpwfj6JI7bSylSkAZUeEoEVfbtYtgxii3EyI2YKqIZk

cURL

curl -g "https://www.simpleinout.com/api/v4/networks" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer qpwfj6JI7bSylSkAZUeEoEVfbtYtgxii3EyI2YKqIZk"

Respuesta

Simulated Response

Campos de respuesta

Name Description
networks (array) an array of networks

Estado

200

Encabezados

etag: W/"0e6fa993eb1afbc0df20fb3c3499593c"
last-modified: Tue, 28 Apr 2026 15:46:40 GMT

Cuerpo

{
  "networks": [
    {
      "id": "46",
      "name": "3 - Burlstad",
      "ssid": "mgeg1rynebpuowey2eksygomg0nlyiwz",
      "comment_on_entry": "In at 3 - Burlstad",
      "comment_on_exit": "Left 3 - Burlstad",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "nodes": [],
      "created_at": 1777391200,
      "updated_at": 1777391200
    },
    {
      "id": "47",
      "name": "4 - South Laurenhaven",
      "ssid": "v5xf1eiz1dsv4ybtorfxm0mpx5l76h3s",
      "comment_on_entry": "In at 4 - South Laurenhaven",
      "comment_on_exit": "Left 4 - South Laurenhaven",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "nodes": [],
      "created_at": 1777391200,
      "updated_at": 1777391200
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 2,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/networks",
      "last_href": "http://example.org/api/v4/networks",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1769273200,
      "beacons": 1772556400,
      "desktop_presences": 1774367200,
      "favorites": 1772383600,
      "fences": 1775922400,
      "groups": 1775317600,
      "networks": 1777391200,
      "roles": 1777391200,
      "settings": 1777391200
    },
    "emergency": null
  }
}

Update a network

Updates an existing network. Please note that if the SSID of the network is updated, any corresponding hardware must also be updated to broadcast the new SSID. Users must have a role that permits managing the company to update networks.

Punto de llegada

PATCH /api/v4/networks/:id

Parametros

Name Description
network[name] (string) the name of the network, no longer than 44 characters
network[ssid] (string) the unique network identifier, no longer than 250 characters
network[comment_on_entry] (string) the comment applied to status updates on entry, defaults to 'In at {name}'
network[comment_on_exit] (string) the comment applied to status updates on exit, defaults to 'Left {name}'
network[status_on_entry] (string) the status to apply on entry: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'in'
network[status_on_exit] (string) the status to apply on exit: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'off', defaults to 'out'
network[nodes] (array) an array of BSSIDs that are the only network equipment associated with this network (if empty all networks with this SSID are valid)

Solicitud

Ruta

PATCH /api/v4/networks/43

Encabezados

Content-Type: application/json
Authorization: Bearer snZ2fupjDCpxeEPMXiTjdetGFDGjJm3br_8VFSFGv8M

Cuerpo

{
  "network": {
    "name": "My Renamed Office",
    "nodes": [
      "00:1A:2B:3C:4D:5E",
      "00:1A:2B:3C:4D:5F"
    ]
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/networks/43" -d '{"network":{"name":"My Renamed Office","nodes":["00:1A:2B:3C:4D:5E","00:1A:2B:3C:4D:5F"]}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer snZ2fupjDCpxeEPMXiTjdetGFDGjJm3br_8VFSFGv8M"

Respuesta

Simulated Response

Campos de respuesta

Name Description
networks (object) the newly updated network attributes

Estado

200

Encabezados

etag: W/"efe72036d6abb2eb1b80ec7f75de2431"

Cuerpo

{
  "networks": {
    "id": "43",
    "name": "My Renamed Office",
    "ssid": "k0zl90liw9z5sv0fcpegxx77vl3gta3r",
    "comment_on_entry": "In at 1 - Port Lorna",
    "comment_on_exit": "Left 1 - Port Lorna",
    "entry": true,
    "exit": true,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "nodes": [
      "00:1A:2B:3C:4D:5E",
      "00:1A:2B:3C:4D:5F"
    ],
    "created_at": 1777391200,
    "updated_at": 1777391200
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1773589600,
      "beacons": 1776008800,
      "desktop_presences": 1773503200,
      "favorites": 1776700000,
      "fences": 1769273200,
      "groups": 1773071200,
      "networks": 1777391200,
      "roles": 1777391200,
      "settings": 1777391200
    },
    "emergency": null
  }
}

Ok

Make sure things are Ok

This API is only used to verify you’ve successfully authorized.

Punto de llegada

GET /api/v4/ok

Parametros

Name Description
meta (string) if any value included, will return meta information instead of a 204 No Content response

Solicitud

Ruta

GET /api/v4/ok

Encabezados

Content-Type: application/json
Authorization: Bearer 8EcTq59M_TsyRg9Xi64tYf2huzDUo7YnPmSFxqcWQ-U

cURL

curl -g "https://www.simpleinout.com/api/v4/ok" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 8EcTq59M_TsyRg9Xi64tYf2huzDUo7YnPmSFxqcWQ-U"

Respuesta

Simulated Response

Estado

204

Reports

Retrieve another user's report

Retrieves a day-by-day report for another user in the same company. Users must have a role that permits viewing report history for others.

Punto de llegada

GET /api/v4/users/:id/reports

Parametros

Name Description
date_range requerido (string) a date range string for the report period
comment (string) optional comment filter; only count status updates whose comment contains this value (case-insensitive)
rounding (string) report duration rounding: 'none', 'hour', or 'quarter_hour'
statuses (string) comma-delimited statuses to count towards totals, possibilities include: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation'
time_zone (string) an IANA time zone to evaluate day boundaries, e.g. 'America/Chicago'
value_format (string) report value format: 'hours', 'labels', or 'minutes'

Solicitud

Ruta

GET /api/v4/users/1452/reports?date_range=1777179600..1777438799&comment=Planning&rounding=quarter_hour&statuses=in&time_zone=America%2FChicago&value_format=minutes

Encabezados

Content-Type: application/json
Authorization: Bearer _91ng9fNV-kRY_9Gi3-mSwPvqpJmwsx8enhWdBxhYUo

Parámetros de la consulta

date_range=1777179600..1777438799
comment=Planning
rounding=quarter_hour
statuses=in
time_zone=America/Chicago
value_format=minutes

cURL

curl -g "https://www.simpleinout.com/api/v4/users/1452/reports?date_range=1777179600..1777438799&comment=Planning&rounding=quarter_hour&statuses=in&time_zone=America%2FChicago&value_format=minutes" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer _91ng9fNV-kRY_9Gi3-mSwPvqpJmwsx8enhWdBxhYUo"

Respuesta

Simulated Response

Campos de respuesta

Name Description
days (array) one result per day in the requested date range
total (string) total value for the requested date range

Estado

200

Encabezados

etag: W/"b4f5d6b0e96f99032945bb914370c6cf"

Cuerpo

{
  "days": [
    {
      "year": 2026,
      "month": 4,
      "day": 26,
      "result": "0"
    },
    {
      "year": 2026,
      "month": 4,
      "day": 27,
      "result": "480"
    },
    {
      "year": 2026,
      "month": 4,
      "day": 28,
      "result": "0"
    }
  ],
  "total": "480"
}

Retrieve my report

Retrieves a day-by-day report for the authenticated user over the provided date range.

Punto de llegada

GET /api/v4/users/my/reports

Parametros

Name Description
date_range requerido (string) a date range string for the report period
comment (string) optional comment filter; only count status updates whose comment contains this value (case-insensitive)
rounding (string) report duration rounding: 'none', 'hour', or 'quarter_hour'
statuses (string) comma-delimited statuses to count towards totals, possibilities include: 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation'
time_zone (string) an IANA time zone to evaluate day boundaries, e.g. 'America/Chicago'
value_format (string) report value format: 'hours', 'labels', or 'minutes'

Solicitud

Ruta

GET /api/v4/users/my/reports?date_range=1777179600..1777438799&comment=Planning&rounding=quarter_hour&statuses=in&time_zone=America%2FChicago&value_format=minutes

Encabezados

Content-Type: application/json
Authorization: Bearer k93o4_1EKZxXO3ldjllQ9agHZXaUW_0n674gESu1Rxg

Parámetros de la consulta

date_range=1777179600..1777438799
comment=Planning
rounding=quarter_hour
statuses=in
time_zone=America/Chicago
value_format=minutes

cURL

curl -g "https://www.simpleinout.com/api/v4/users/my/reports?date_range=1777179600..1777438799&comment=Planning&rounding=quarter_hour&statuses=in&time_zone=America%2FChicago&value_format=minutes" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer k93o4_1EKZxXO3ldjllQ9agHZXaUW_0n674gESu1Rxg"

Respuesta

Simulated Response

Campos de respuesta

Name Description
days (array) one result per day in the requested date range
total (string) total value for the requested date range

Estado

200

Encabezados

etag: W/"b4f5d6b0e96f99032945bb914370c6cf"

Cuerpo

{
  "days": [
    {
      "year": 2026,
      "month": 4,
      "day": 26,
      "result": "0"
    },
    {
      "year": 2026,
      "month": 4,
      "day": 27,
      "result": "480"
    },
    {
      "year": 2026,
      "month": 4,
      "day": 28,
      "result": "0"
    }
  ],
  "total": "480"
}

Roles

Create a role

Creates a new role. Once this role is created, it will be available to assign to users within the Simple In/Out apps and website. Users must have a role that permits managing the company to create roles. Companies are limited to 100 Roles.

Punto de llegada

POST /api/v4/roles

Parametros

Name Description
role[name] requerido (string) the name of the role, no longer than 255 characters, must be unique for the company
role[billing] (boolean) these users can change the company's plan, credit card, and invoice email/information.
role[followed_users] (boolean) these users can receive notifications on their devices when another user updates their status.
role[reminders] (boolean) these users can manage notifications sent to other users reminding them to update their status.
role[safeties] (boolean) these users can receive notifications when another user hasn't updated their status.
role[user_board] (boolean) these users can see all other users and their current status.
role[manage_all_announcements] (boolean) these users can manage all announcements.
role[manage_groups_and_memberships] (boolean) these users can manage groups and which users are assigned to each group.
role[manage_others_archives] (boolean) these users can change the past statuses of all others by adding and deleting status updates.
role[manage_others_futures] (boolean) these users can schedule future status updates for all other users.
role[manage_others_status] (boolean) these users can change the current status of all users.
role[manage_own_archives] (boolean) these users can change their own past statuses by adding and deleting status updates.
role[manage_own_futures] (boolean) these users can schedule future status updates for themselves.
role[manage_own_status] (boolean) these users can update their own status from any device or the website
role[manage_status_automatically] (boolean) these users can manage their own current status automatically using Geofences, Beacons, Networks, and Desktop Presence.
role[view_all_announcements] (boolean) these users can view all announcements.
role[view_others_archives] (boolean) these users can view the past status updates made by all other users.
role[view_others_futures] (boolean) these users can view the scheduled status updates for all users.
role[view_others_reports] (boolean) these users can run reports on the status history of all other users.
role[view_user_board_updated_at] (boolean) these users can view the time that status updates were made on the board.
role[member_board] (boolean) these users can see other users within the same groups and their current status.
role[manage_member_announcements] (boolean) these users can manage announcements within the same groups.
role[manage_member_archives] (boolean) these users can change the past statuses of users within the same groups by adding and deleting status updates.
role[manage_member_futures] (boolean) these users can schedule future status updates for users within the same groups.
role[manage_member_status] (boolean) these users can change the current status of users within the same groups.
role[view_member_announcements] (boolean) these users can view announcements for everyone and the groups they belong to.
role[view_member_archives] (boolean) these users can view the past status updates made by users within the same groups.
role[view_member_futures] (boolean) these users can view the scheduled status updates for users within the same groups.
role[view_member_reports] (boolean) these users can run reports on the status history of users within the same groups.

Solicitud

Ruta

POST /api/v4/roles

Encabezados

Content-Type: application/json
Authorization: Bearer -4LvekhSSWu3xS27NQwTNOKdeSK5G43U3EgWKIEYY4c

Cuerpo

{
  "role": {
    "name": "Billing Role",
    "billing": true,
    "followed_users": false,
    "reminders": false,
    "safeties": false,
    "user_board": false,
    "manage_all_announcements": false,
    "manage_groups_and_memberships": false,
    "manage_others_archives": false,
    "manage_others_futures": false,
    "manage_others_status": false,
    "manage_own_archives": false,
    "manage_own_futures": false,
    "manage_own_status": false,
    "manage_status_automatically": false,
    "view_all_announcements": true,
    "view_others_archives": false,
    "view_others_futures": false,
    "view_others_reports": false,
    "view_user_board_updated_at": false,
    "member_board": false,
    "manage_member_announcements": false,
    "manage_member_archives": false,
    "manage_member_futures": false,
    "manage_member_status": false,
    "view_member_announcements": false,
    "view_member_archives": false,
    "view_member_futures": false,
    "view_member_reports": false
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/roles" -d '{"role":{"name":"Billing Role","billing":true,"followed_users":false,"reminders":false,"safeties":false,"user_board":false,"manage_all_announcements":false,"manage_groups_and_memberships":false,"manage_others_archives":false,"manage_others_futures":false,"manage_others_status":false,"manage_own_archives":false,"manage_own_futures":false,"manage_own_status":false,"manage_status_automatically":false,"view_all_announcements":true,"view_others_archives":false,"view_others_futures":false,"view_others_reports":false,"view_user_board_updated_at":false,"member_board":false,"manage_member_announcements":false,"manage_member_archives":false,"manage_member_futures":false,"manage_member_status":false,"view_member_announcements":false,"view_member_archives":false,"view_member_futures":false,"view_member_reports":false}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer -4LvekhSSWu3xS27NQwTNOKdeSK5G43U3EgWKIEYY4c"

Respuesta

Simulated Response

Campos de respuesta

Name Description
roles (object) the newly created role attributes

Estado

201

Encabezados

etag: W/"1a88d30dc69cadcc05068551dfd9421f"

Cuerpo

{
  "roles": {
    "id": "4266",
    "name": "Billing Role",
    "billing": true,
    "followed_users": false,
    "reminders": false,
    "safeties": false,
    "user_board": false,
    "manage_all_announcements": false,
    "manage_company_and_users": false,
    "manage_groups_and_memberships": false,
    "manage_member_announcements": false,
    "manage_others_archives": false,
    "manage_others_futures": false,
    "manage_others_status": false,
    "manage_own_archives": false,
    "manage_own_futures": false,
    "manage_own_status": false,
    "manage_status_automatically": false,
    "view_all_announcements": true,
    "view_member_announcements": false,
    "view_others_archives": false,
    "view_others_futures": false,
    "view_others_reports": false,
    "member_board": false,
    "manage_member_archives": false,
    "manage_member_futures": false,
    "manage_member_status": false,
    "view_member_archives": false,
    "view_member_futures": false,
    "view_member_reports": false,
    "view_user_board_updated_at": false,
    "created_at": 1777391200,
    "updated_at": 1777391200
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1773589600,
      "beacons": 1770310000,
      "desktop_presences": 1774885600,
      "favorites": 1772383600,
      "fences": 1774021600,
      "groups": 1769532400,
      "networks": 1776440800,
      "roles": 1777391200,
      "settings": 1777391200
    },
    "emergency": null
  }
}

Delete a role

Deletes an existing role. Users must have a role that permits managing the company to delete roles.

Punto de llegada

DELETE /api/v4/roles/:id

Solicitud

Ruta

DELETE /api/v4/roles/4247

Encabezados

Content-Type: application/json
Authorization: Bearer HXDiYKtoLCi7t0C89vwpPamN_pCJZdJI65gFk5Csdh0

cURL

curl "https://www.simpleinout.com/api/v4/roles/4247" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer HXDiYKtoLCi7t0C89vwpPamN_pCJZdJI65gFk5Csdh0"

Respuesta

Simulated Response

Estado

204

List all roles

Return a list of all the roles belonging to the company.

Punto de llegada

GET /api/v4/roles

Parametros

Name Description
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'name'
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results

Solicitud

Ruta

GET /api/v4/roles

Encabezados

Content-Type: application/json
Authorization: Bearer SERXCrC95pV37w3FqFxqta4-ClsK0xON62-qQUNE0uc

cURL

curl -g "https://www.simpleinout.com/api/v4/roles" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer SERXCrC95pV37w3FqFxqta4-ClsK0xON62-qQUNE0uc"

Respuesta

Simulated Response

Campos de respuesta

Name Description
roles (array) an array of roles

Estado

200

Encabezados

etag: W/"b8fbd8bb380af63bbcba67a2a1db8c3f"
last-modified: Tue, 28 Apr 2026 15:46:40 GMT

Cuerpo

{
  "roles": [
    {
      "id": "4259",
      "name": "Manager",
      "billing": false,
      "followed_users": false,
      "reminders": false,
      "safeties": false,
      "user_board": true,
      "manage_all_announcements": true,
      "manage_company_and_users": false,
      "manage_groups_and_memberships": false,
      "manage_member_announcements": false,
      "manage_others_archives": false,
      "manage_others_futures": true,
      "manage_others_status": true,
      "manage_own_archives": false,
      "manage_own_futures": true,
      "manage_own_status": true,
      "manage_status_automatically": true,
      "view_all_announcements": true,
      "view_member_announcements": false,
      "view_others_archives": true,
      "view_others_futures": true,
      "view_others_reports": true,
      "member_board": false,
      "manage_member_archives": false,
      "manage_member_futures": false,
      "manage_member_status": false,
      "view_member_archives": false,
      "view_member_futures": false,
      "view_member_reports": false,
      "view_user_board_updated_at": true,
      "created_at": 1777391200,
      "updated_at": 1777391200
    },
    {
      "id": "4261",
      "name": "Limited User",
      "billing": false,
      "followed_users": false,
      "reminders": false,
      "safeties": false,
      "user_board": true,
      "manage_all_announcements": false,
      "manage_company_and_users": false,
      "manage_groups_and_memberships": false,
      "manage_member_announcements": false,
      "manage_others_archives": false,
      "manage_others_futures": false,
      "manage_others_status": false,
      "manage_own_archives": false,
      "manage_own_futures": false,
      "manage_own_status": false,
      "manage_status_automatically": false,
      "view_all_announcements": true,
      "view_member_announcements": false,
      "view_others_archives": true,
      "view_others_futures": true,
      "view_others_reports": false,
      "member_board": false,
      "manage_member_archives": false,
      "manage_member_futures": false,
      "manage_member_status": false,
      "view_member_archives": false,
      "view_member_futures": false,
      "view_member_reports": false,
      "view_user_board_updated_at": true,
      "created_at": 1777391200,
      "updated_at": 1777391200
    },
    {
      "id": "4258",
      "name": "Administrator",
      "billing": true,
      "followed_users": true,
      "reminders": true,
      "safeties": true,
      "user_board": true,
      "manage_all_announcements": true,
      "manage_company_and_users": true,
      "manage_groups_and_memberships": true,
      "manage_member_announcements": false,
      "manage_others_archives": true,
      "manage_others_futures": true,
      "manage_others_status": true,
      "manage_own_archives": true,
      "manage_own_futures": true,
      "manage_own_status": true,
      "manage_status_automatically": true,
      "view_all_announcements": true,
      "view_member_announcements": false,
      "view_others_archives": true,
      "view_others_futures": true,
      "view_others_reports": true,
      "member_board": false,
      "manage_member_archives": false,
      "manage_member_futures": false,
      "manage_member_status": false,
      "view_member_archives": false,
      "view_member_futures": false,
      "view_member_reports": false,
      "view_user_board_updated_at": true,
      "created_at": 1777391200,
      "updated_at": 1777391200
    },
    {
      "id": "4260",
      "name": "Regular User",
      "billing": false,
      "followed_users": false,
      "reminders": false,
      "safeties": false,
      "user_board": true,
      "manage_all_announcements": false,
      "manage_company_and_users": false,
      "manage_groups_and_memberships": false,
      "manage_member_announcements": false,
      "manage_others_archives": false,
      "manage_others_futures": false,
      "manage_others_status": false,
      "manage_own_archives": false,
      "manage_own_futures": true,
      "manage_own_status": true,
      "manage_status_automatically": true,
      "view_all_announcements": true,
      "view_member_announcements": false,
      "view_others_archives": true,
      "view_others_futures": true,
      "view_others_reports": false,
      "member_board": false,
      "manage_member_archives": false,
      "manage_member_futures": false,
      "manage_member_status": false,
      "view_member_archives": false,
      "view_member_futures": false,
      "view_member_reports": false,
      "view_user_board_updated_at": true,
      "created_at": 1777391200,
      "updated_at": 1777391200
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 4,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/roles",
      "last_href": "http://example.org/api/v4/roles",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1776095200,
      "beacons": 1776181600,
      "desktop_presences": 1774799200,
      "favorites": 1770482800,
      "fences": 1776440800,
      "groups": 1774799200,
      "networks": 1770482800,
      "roles": 1777391200,
      "settings": 1777391200
    },
    "emergency": null
  }
}

Retrieve a role

Retrieve an existing role.

Punto de llegada

GET /api/v4/roles/:id

Solicitud

Ruta

GET /api/v4/roles/4252

Encabezados

Content-Type: application/json
Authorization: Bearer UisUeRjEBj6marN-7EpNhg1mfVJT3ZARyD1bRVf-4fY

cURL

curl -g "https://www.simpleinout.com/api/v4/roles/4252" -X GET \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer UisUeRjEBj6marN-7EpNhg1mfVJT3ZARyD1bRVf-4fY"

Respuesta

Simulated Response

Campos de respuesta

Name Description
roles (object) the role attributes

Estado

200

Encabezados

etag: W/"474c4c3adeae1b552f4ec0e15934f40b"
last-modified: Tue, 28 Apr 2026 15:46:40 GMT

Cuerpo

{
  "roles": {
    "id": "4252",
    "name": "Littel-Heathcote",
    "billing": false,
    "followed_users": false,
    "reminders": false,
    "safeties": false,
    "user_board": false,
    "manage_all_announcements": false,
    "manage_company_and_users": false,
    "manage_groups_and_memberships": false,
    "manage_member_announcements": false,
    "manage_others_archives": false,
    "manage_others_futures": false,
    "manage_others_status": false,
    "manage_own_archives": false,
    "manage_own_futures": false,
    "manage_own_status": false,
    "manage_status_automatically": false,
    "view_all_announcements": true,
    "view_member_announcements": false,
    "view_others_archives": false,
    "view_others_futures": false,
    "view_others_reports": false,
    "member_board": false,
    "manage_member_archives": false,
    "manage_member_futures": false,
    "manage_member_status": false,
    "view_member_archives": false,
    "view_member_futures": false,
    "view_member_reports": false,
    "view_user_board_updated_at": false,
    "created_at": 1777391200,
    "updated_at": 1777391200
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1776440800,
      "beacons": 1774972000,
      "desktop_presences": 1773071200,
      "favorites": 1773503200,
      "fences": 1771346800,
      "groups": 1770223600,
      "networks": 1771346800,
      "roles": 1777391200,
      "settings": 1777391200
    },
    "emergency": null,
    "update_available": false
  }
}

Update a role

Updates an existing role. Users must have a role that permits managing the company to update roles.

Punto de llegada

PATCH /api/v4/roles/:id

Parametros

Name Description
role[name] requerido (string) the name of the role, no longer than 255 characters, must be unique for the company
role[billing] (boolean) these users can change the company's plan, credit card, and invoice email/information.
role[followed_users] (boolean) these users can receive notifications on their devices when another user updates their status.
role[reminders] (boolean) these users can manage notifications sent to other users reminding them to update their status.
role[safeties] (boolean) these users can receive notifications when another user hasn't updated their status.
role[user_board] (boolean) these users can see all other users and their current status.
role[manage_all_announcements] (boolean) these users can manage all announcements.
role[manage_groups_and_memberships] (boolean) these users can manage groups and which users are assigned to each group.
role[manage_others_archives] (boolean) these users can change the past statuses of all others by adding and deleting status updates.
role[manage_others_futures] (boolean) these users can schedule future status updates for all other users.
role[manage_others_status] (boolean) these users can change the current status of all users.
role[manage_own_archives] (boolean) these users can change their own past statuses by adding and deleting status updates.
role[manage_own_futures] (boolean) these users can schedule future status updates for themselves.
role[manage_own_status] (boolean) these users can update their own status from any device or the website
role[manage_status_automatically] (boolean) these users can manage their own current status automatically using Geofences, Beacons, Networks, and Desktop Presence.
role[view_all_announcements] (boolean) these users can view all announcements.
role[view_others_archives] (boolean) these users can view the past status updates made by all other users.
role[view_others_futures] (boolean) these users can view the scheduled status updates for all users.
role[view_others_reports] (boolean) these users can run reports on the status history of all other users.
role[view_user_board_updated_at] (boolean) these users can view the time that status updates were made on the board.
role[member_board] (boolean) these users can see other users within the same groups and their current status.
role[manage_member_announcements] (boolean) these users can manage announcements within the same groups.
role[manage_member_archives] (boolean) these users can change the past statuses of users within the same groups by adding and deleting status updates.
role[manage_member_futures] (boolean) these users can schedule future status updates for users within the same groups.
role[manage_member_status] (boolean) these users can change the current status of users within the same groups.
role[view_member_announcements] (boolean) these users can view announcements for everyone and the groups they belong to.
role[view_member_archives] (boolean) these users can view the past status updates made by users within the same groups.
role[view_member_futures] (boolean) these users can view the scheduled status updates for users within the same groups.
role[view_member_reports] (boolean) these users can run reports on the status history of users within the same groups.

Solicitud

Ruta

PATCH /api/v4/roles/4257

Encabezados

Content-Type: application/json
Authorization: Bearer 76dw97K-qZ4q0HXxSYgFWn0IXZkqFil5zx39flRv8z4

Cuerpo

{
  "role": {
    "name": "My Renamed Role",
    "billing": false,
    "view_others_archives": true,
    "view_others_futures": true
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/roles/4257" -d '{"role":{"name":"My Renamed Role","billing":false,"view_others_archives":true,"view_others_futures":true}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 76dw97K-qZ4q0HXxSYgFWn0IXZkqFil5zx39flRv8z4"

Respuesta

Simulated Response

Campos de respuesta

Name Description
roles (object) the newly updated role attributes

Estado

200

Encabezados

etag: W/"458b1381d7d8709d53200cfa6508ef13"

Cuerpo

{
  "roles": {
    "id": "4257",
    "name": "My Renamed Role",
    "billing": false,
    "followed_users": false,
    "reminders": false,
    "safeties": false,
    "user_board": false,
    "manage_all_announcements": false,
    "manage_company_and_users": false,
    "manage_groups_and_memberships": false,
    "manage_member_announcements": false,
    "manage_others_archives": false,
    "manage_others_futures": false,
    "manage_others_status": false,
    "manage_own_archives": false,
    "manage_own_futures": false,
    "manage_own_status": false,
    "manage_status_automatically": false,
    "view_all_announcements": true,
    "view_member_announcements": false,
    "view_others_archives": true,
    "view_others_futures": true,
    "view_others_reports": false,
    "member_board": false,
    "manage_member_archives": false,
    "manage_member_futures": false,
    "manage_member_status": false,
    "view_member_archives": false,
    "view_member_futures": false,
    "view_member_reports": false,
    "view_user_board_updated_at": false,
    "created_at": 1777391200,
    "updated_at": 1777391200
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1773503200,
      "beacons": 1773935200,
      "desktop_presences": 1772642800,
      "favorites": 1771346800,
      "fences": 1771174000,
      "groups": 1770310000,
      "networks": 1776268000,
      "roles": 1777391200,
      "settings": 1777391200
    },
    "emergency": null
  }
}

Safeties

Create a safety

Creates a new safety. Two types of safeties can be created. If ‘run_time’ is given, the notification will go out if there are any users with the matching status at the given time. If ‘unsafe_after’ is given, a notification will go out any time a user is in the given status for the given length of time. Users must have a role that permits using safety notifications to create safeties, and the company must be on a plan that allows for safety notifications.

Punto de llegada

POST /api/v4/safeties

Parametros

Name Description
safety[device_id] requerido (string) the ID of the device that will receive notifications
safety[group_id] (string) the ID of the group to observe, the entire company will be observed if no group is assigned
safety[name] requerido (string) the label to apply to the safety
safety[run_time] (string) the time to check for unsafe users in 24-hour format at 5 minute intervals, run_time or unsafe_after is required
safety[run_time_zone] requerido (string) the time zone of the run time, required if run_time is given
safety[status] requerido (string) the status that determines if a user is unsafe: 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
safety[unsafe_after] (integer) the length of time, in hours, for a user with the matching status to be considered unsafe, run_time or unsafe_after is required
safety[wdays] requerido (string) days that safety notifications are enabled in the format '0123456', which each number equal to a weekday (0=Sunday, 1=Monday, etc)

Solicitud

Ruta

POST /api/v4/safeties

Encabezados

Content-Type: application/json
Authorization: Bearer e9u9asPfQdzoA-7lGPWWW0aWc5NVFsoJrAHPEdxRRc0

Cuerpo

{
  "safety": {
    "device_id": 50,
    "name": "Safety Alert",
    "run_time": "17:00",
    "run_time_zone": "America/Chicago",
    "status": "in",
    "wdays": "12345"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/safeties" -d '{"safety":{"device_id":50,"name":"Safety Alert","run_time":"17:00","run_time_zone":"America/Chicago","status":"in","wdays":"12345"}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer e9u9asPfQdzoA-7lGPWWW0aWc5NVFsoJrAHPEdxRRc0"

Respuesta

Simulated Response

Campos de respuesta

Name Description
safeties (object) the newly created safety attributes

Estado

201

Encabezados

etag: W/"85be4951f99226a02b1c31ba28f6873a"

Cuerpo

{
  "safeties": {
    "id": "12",
    "device_id": "50",
    "group_id": null,
    "name": "Safety Alert",
    "run_time": "17:00",
    "run_time_zone": "America/Chicago",
    "status": "in",
    "unsafe_after": null,
    "wdays": "12345",
    "created_at": 1777391202,
    "updated_at": 1777391202
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1769878002,
      "beacons": 1774194402,
      "desktop_presences": 1772729202,
      "favorites": 1769964402,
      "fences": 1773503202,
      "groups": 1775231202,
      "networks": 1770828402,
      "roles": 1777391202,
      "settings": 1777391202
    },
    "emergency": null,
    "update_available": false
  }
}

Delete a safety

Deletes an existing safety. Users must have a role that permits using safety notifications to delete safeties, and the company must be on a plan that allows for safety notifications.

Punto de llegada

DELETE /api/v4/safeties/:id

Solicitud

Ruta

DELETE /api/v4/safeties/13

Encabezados

Content-Type: application/json
Authorization: Bearer Cf_dl5pAQ5eP9DuT4SN26vvXQIPYHvv0Ri7y68g_XxY

cURL

curl "https://www.simpleinout.com/api/v4/safeties/13" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer Cf_dl5pAQ5eP9DuT4SN26vvXQIPYHvv0Ri7y68g_XxY"

Respuesta

Simulated Response

Estado

204

List all safeties

Return a list of all safeties belonging to the device. Users must have a role that permits using safety notifications to list safeties, and the company must be on a plan that allows for safety notifications.

Punto de llegada

GET /api/v4/safeties

Parametros

Name Description
device_id requerido (string) the unique ID of the device
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'name'
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results

Solicitud

Ruta

GET /api/v4/safeties?device_id=48

Encabezados

Content-Type: application/json
Authorization: Bearer yNZSYaeHs1ypEJO4pCC_1TF9ESKgDlNgOZ2-WifZWDY

Parámetros de la consulta

device_id=48

cURL

curl -g "https://www.simpleinout.com/api/v4/safeties?device_id=48" -X GET \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer yNZSYaeHs1ypEJO4pCC_1TF9ESKgDlNgOZ2-WifZWDY"

Respuesta

Simulated Response

Campos de respuesta

Name Description
safeties (array) an array of safety notification settings

Estado

200

Encabezados

etag: W/"7f3500ad8c80343a38c1572edb0717ac"
last-modified: Tue, 28 Apr 2026 15:46:42 GMT

Cuerpo

{
  "safeties": [
    {
      "id": "9",
      "device_id": "48",
      "group_id": null,
      "name": "Safety Alert",
      "run_time": "22:00",
      "run_time_zone": "America/Chicago",
      "status": "out",
      "unsafe_after": null,
      "wdays": "0123456",
      "created_at": 1777391202,
      "updated_at": 1777391202
    },
    {
      "id": "10",
      "device_id": "48",
      "group_id": null,
      "name": "Safety Alert",
      "run_time": null,
      "run_time_zone": "America/Chicago",
      "status": "out",
      "unsafe_after": 5,
      "wdays": "0123456",
      "created_at": 1777391202,
      "updated_at": 1777391202
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 2,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/safeties?device_id=48",
      "last_href": "http://example.org/api/v4/safeties?device_id=48",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1771951602,
      "beacons": 1769878002,
      "desktop_presences": 1773935202,
      "favorites": 1773935202,
      "fences": 1776959202,
      "groups": 1771260402,
      "networks": 1776872802,
      "roles": 1777391202,
      "settings": 1777391202
    },
    "emergency": null,
    "update_available": false
  }
}

Retrieve a safety

Retrieve an existing safety. Users must have a role that permits using safety notifications to retrieve safeties, and the company must be on a plan that allows for safety notifications.

Punto de llegada

GET /api/v4/safeties/:id

Parametros

Name Description
expand (string) set to 'users' to include the unsafe users

Solicitud

Ruta

GET /api/v4/safeties/11?expand=users

Encabezados

Content-Type: application/json
Authorization: Bearer jbVdELsy7OPEL_UKDGQD5j5GmxACLqDw4oqrDTyHprA

Parámetros de la consulta

expand=users

cURL

curl -g "https://www.simpleinout.com/api/v4/safeties/11?expand=users" -X GET \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer jbVdELsy7OPEL_UKDGQD5j5GmxACLqDw4oqrDTyHprA"

Respuesta

Simulated Response

Campos de respuesta

Name Description
safeties (object) the safety attributes
users (array) an array of users considered unsafe

Estado

200

Encabezados

etag: W/"bd07a01fb9eedc409aab3c90a5e52a6d"
last-modified: Tue, 28 Apr 2026 15:46:42 GMT

Cuerpo

{
  "safeties": {
    "id": "11",
    "device_id": "49",
    "group_id": null,
    "name": "Safety Alert",
    "run_time": null,
    "run_time_zone": "America/Chicago",
    "status": "in",
    "unsafe_after": 5,
    "wdays": "0123456",
    "created_at": 1777391202,
    "updated_at": 1777391202
  },
  "users": [
    {
      "id": "1603",
      "name": "Caridad Emard"
    },
    {
      "id": "1602",
      "name": "Raisa Schinner"
    }
  ],
  "meta": {
    "last_updated_at": {
      "announcements": 1772642802,
      "beacons": 1774021602,
      "desktop_presences": 1770396402,
      "favorites": 1776268002,
      "fences": 1777218402,
      "groups": 1774453602,
      "networks": 1775317602,
      "roles": 1777391202,
      "settings": 1777391202
    },
    "emergency": null,
    "update_available": false
  }
}

Update a safety

Updates an existing safety. Users must have a role that permits using safety notifications to update safeties, and the company must be on a plan that allows for safety notifications.

Punto de llegada

PATCH /api/v4/safeties/:id

Parametros

Name Description
safety[device_id] (string) the ID of the device that will receive notifications
safety[group_id] (string) the ID of the group to observe, send null to remove the group and use the entire company
safety[name] (string) the label to apply to the safety
safety[run_time] (string) the time to check for unsafe users in 24-hour format at 5 minute intervals, run_time or unsafe_after is required
safety[run_time_zone] (string) the time zone of the run time, required if run_time is given
safety[status] (string) the status that determines if a user is unsafe: 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
safety[unsafe_after] (integer) the length of time, in hours, for a user with the matching status to be considered unsafe, run_time or unsafe_after is required
safety[wdays] (string) days that safety notifications are enabled in the format '0123456', which each number equal to a weekday (0=Sunday, 1=Monday, etc)

Solicitud

Ruta

PATCH /api/v4/safeties/14

Encabezados

Content-Type: application/json
Authorization: Bearer 4L6oF-_1_faT4FhykGhu_kUM0Qoq7o-tZdvLEKCNFDw

Cuerpo

{
  "safety": {
    "name": "Renamed Safety Notice"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/safeties/14" -d '{"safety":{"name":"Renamed Safety Notice"}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer 4L6oF-_1_faT4FhykGhu_kUM0Qoq7o-tZdvLEKCNFDw"

Respuesta

Simulated Response

Campos de respuesta

Name Description
safeties (object) the newly updated safety attributes

Estado

200

Encabezados

etag: W/"a6b4061b5e69a1974a548351efec28c7"

Cuerpo

{
  "safeties": {
    "id": "14",
    "device_id": "52",
    "group_id": null,
    "name": "Renamed Safety Notice",
    "run_time": "22:00",
    "run_time_zone": "America/Chicago",
    "status": "out",
    "unsafe_after": null,
    "wdays": "0123456",
    "created_at": 1777391202,
    "updated_at": 1777391202
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1772984802,
      "beacons": 1769100402,
      "desktop_presences": 1777045602,
      "favorites": 1771865202,
      "fences": 1775231202,
      "groups": 1770223602,
      "networks": 1769100402,
      "roles": 1777391202,
      "settings": 1777391202
    },
    "emergency": null,
    "update_available": false
  }
}

Statuses

List statuses

List all the statuses within the time period specified by the ‘created_at’ date range. Users must have a role that permits viewing the status history of others or only the authorized user’s statuses will be returned.

Punto de llegada

GET /api/v4/statuses

Parametros

Name Description
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results
created_at requerido (string) a date range string for the time the status was created
status (string) the status: 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
comment (string) the comment, case sensitive, included with the status change
automatic (boolean) only find automatic statuses
user_id (string) the ID of a particular user
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'created_at', 'status', 'comment', 'automatic'
sort_locale (string) the locale to use when sorting by comment, defaults to English (US)
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user', 'user.favorites', 'user.latest', 'user.memberships', 'user.memberships.group', 'user.phones', 'user.recents', 'changed_by_user', 'application'

Solicitud

Ruta

GET /api/v4/statuses?created_at=1776747600..1777006799

Encabezados

Content-Type: application/json
Authorization: Bearer 3cmD7ijmhPrwACPNUFNYffi20kaH1r4DDb3XcizAuXo

Parámetros de la consulta

created_at=1776747600..1777006799

cURL

curl -g "https://www.simpleinout.com/api/v4/statuses?created_at=1776747600..1777006799" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 3cmD7ijmhPrwACPNUFNYffi20kaH1r4DDb3XcizAuXo"

Respuesta

Simulated Response

Campos de respuesta

Name Description
statuses (array) an array of matching statuses

Estado

200

Encabezados

etag: W/"4eb282d41874e64bf4ccfc76de7974b9"
last-modified: Wed, 22 Apr 2026 14:00:00 GMT

Cuerpo

{
  "statuses": [
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "1457",
      "changed_by_user_id": null,
      "created_at": 1776754800
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": true,
      "user_id": "1457",
      "changed_by_user_id": null,
      "created_at": 1776769200
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "1457",
      "changed_by_user_id": null,
      "created_at": 1776772800
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "1457",
      "changed_by_user_id": null,
      "created_at": 1776790800
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": true,
      "user_id": "1457",
      "changed_by_user_id": null,
      "created_at": 1776841200
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": true,
      "user_id": "1457",
      "changed_by_user_id": null,
      "created_at": 1776862800
    },
    {
      "status": "out",
      "comment": "On Vacation",
      "automatic": false,
      "user_id": "1457",
      "changed_by_user_id": "1458",
      "created_at": 1776866400
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 7,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/statuses?created_at=1776747600..1777006799",
      "last_href": "http://example.org/api/v4/statuses?created_at=1776747600..1777006799",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1776959195,
      "beacons": 1770223595,
      "desktop_presences": 1772124395,
      "favorites": 1774799195,
      "fences": 1773243995,
      "groups": 1772642795,
      "networks": 1774021595,
      "roles": 1777391195,
      "settings": 1777391195
    },
    "emergency": null
  }
}

Trials

Create a new trial

Create a new Simple In/Out trial company/user. This results in a HTTP 302 redirect to simpleinout.com. There, Simple In/Out will ask the user for their new company/user information and create them. Simple In/Out will send a request to your redirect_uri with a code that you will use in the Authorization Code grant to create access and refresh tokens to access the API.

Punto de llegada

GET /api/v4/trials/new

Parametros

Name Description
response_type requerido (string) the type of authorization to use, in this case always 'code'
client_id requerido (string) your API client key
redirect_uri requerido (string) the URI to return the user to after authenticating, must match those registered with Simple In/Out
scope requerido (string) requested scope, always 'executive'
locale (string) the language of your device, all values accepted

Solicitud

Ruta

GET /api/v4/trials/new?response_type=code&client_id=PLACE_YOUR_API_CLIENT_ID_HERE&redirect_uri=https%3A%2F%2Fwww.simplymadeapps.com%2Fredirect%2Furl&scope=executive&locale=en

Encabezados

Content-Type: application/json

Parámetros de la consulta

response_type=code
client_id=PLACE_YOUR_API_CLIENT_ID_HERE
redirect_uri=https://www.simplymadeapps.com/redirect/url
scope=executive
locale=en

cURL

curl -g "https://www.simpleinout.com/api/v4/trials/new?response_type=code&client_id=PLACE_YOUR_API_CLIENT_ID_HERE&redirect_uri=https%3A%2F%2Fwww.simplymadeapps.com%2Fredirect%2Furl&scope=executive&locale=en" -X GET \
	-H "Content-Type: application/json"

Respuesta

Simulated Response

Estado

302

Users

Archive a user

Archives an existing user. Users must have a role that permits managing users.

Punto de llegada

POST /api/v4/users/:id/archive

Solicitud

Ruta

POST /api/v4/users/1547/archive

Encabezados

Content-Type: application/json
Authorization: Bearer aclw2v-SHd1dtuKm_YOlQkQoRwjbCyVkgrT1Ka5IvdQ

cURL

curl "https://www.simpleinout.com/api/v4/users/1547/archive" -d '' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer aclw2v-SHd1dtuKm_YOlQkQoRwjbCyVkgrT1Ka5IvdQ"

Respuesta

Simulated Response

Estado

204

Create a future status update for a user

Add a scheduled status for a specific user. Users must have a role that permits managing their own scheduled statuses if updating themselves or be permitted to manage the scheduled statuses of others if updating another user. The company must also have scheduled statuses enabled.

Punto de llegada

POST /api/v4/users/:id/futures

Parametros

Name Description
future[status] requerido (string) must be 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
future[apply_at] requerido (integer) epoch time to apply status change, must be in the future, have minutes within (00, 15, 30, 45), and seconds of 0
future[comment] (string) up to 50 character description of the status update
future[end_at] (integer) epoch time to end the scheduled status, must be after apply_at, have minutes within (00, 15, 30, 45), and seconds of 0
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user', 'changed_by_user'

Solicitud

Ruta

POST /api/v4/users/1503/futures

Encabezados

Content-Type: application/json
Authorization: Bearer ikK3fPkzQLZAouF3BfueZRg8JFH06AGxq9vyuu8a_5U

Cuerpo

{
  "future": {
    "status": "out",
    "apply_at": 1782658800,
    "comment": "On Vacation",
    "end_at": 1782918000
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/1503/futures" -d '{"future":{"status":"out","apply_at":1782658800,"comment":"On Vacation","end_at":1782918000}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer ikK3fPkzQLZAouF3BfueZRg8JFH06AGxq9vyuu8a_5U"

Respuesta

Simulated Response

Campos de respuesta

Name Description
futures (object) the newly created future object

Estado

201

Encabezados

etag: W/"2dc0491d4776093e0043564034d05122"

Cuerpo

{
  "futures": {
    "id": "50",
    "status": "out",
    "comment": "On Vacation",
    "completed": false,
    "apply_at": 1782658800,
    "end_at": 1782918000,
    "user_id": "1503",
    "changed_by_user_id": "1502"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1776181597,
      "beacons": 1770828397,
      "desktop_presences": 1774626397,
      "favorites": 1776008797,
      "fences": 1770050797,
      "groups": 1776959197,
      "networks": 1772297197,
      "roles": 1777391197,
      "settings": 1777391197
    },
    "emergency": null
  }
}

Create a future status update for the current user

Add a scheduled status for the current user. Users must have a role that permits managing their own scheduled statuses and the company must have scheduled statuses enabled.

Punto de llegada

POST /api/v4/users/my/futures

Parametros

Name Description
future[status] requerido (string) must be 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
future[apply_at] requerido (integer) epoch time to apply status change, must be in the future and have minutes within (00, 15, 30, 45), and seconds of 0
future[comment] (string) up to 50 character description of the status update
future[end_at] (integer) epoch time to end the scheduled status, must be after apply_at, have minutes within (00, 15, 30, 45), and seconds of 0
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user', 'changed_by_user'

Solicitud

Ruta

POST /api/v4/users/my/futures

Encabezados

Content-Type: application/json
Authorization: Bearer poH-mzqBIokcWEm1B3rmxLLZRgzeppvMRh5QtqWTdRg

Cuerpo

{
  "future": {
    "status": "out",
    "apply_at": 1782658800,
    "comment": "On Vacation",
    "end_at": 1782918000
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/my/futures" -d '{"future":{"status":"out","apply_at":1782658800,"comment":"On Vacation","end_at":1782918000}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer poH-mzqBIokcWEm1B3rmxLLZRgzeppvMRh5QtqWTdRg"

Respuesta

Simulated Response

Campos de respuesta

Name Description
futures (object) the newly created future object

Estado

201

Encabezados

etag: W/"0b1321e9f588ee05f580828b1cf1bb34"

Cuerpo

{
  "futures": {
    "id": "49",
    "status": "out",
    "comment": "On Vacation",
    "completed": false,
    "apply_at": 1782658800,
    "end_at": 1782918000,
    "user_id": "1493",
    "changed_by_user_id": null
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1769791597,
      "beacons": 1776181597,
      "desktop_presences": 1776440797,
      "favorites": 1771433197,
      "fences": 1776181597,
      "groups": 1774799197,
      "networks": 1770050797,
      "roles": 1777391197,
      "settings": 1777391197
    },
    "emergency": null
  }
}

Create a status update for a user

Changes a user’s status. Users must have a role that permits managing their own current status or their own past statuses if updating themselves. Users must be permitted to manage the current status of others or the past status of others if updating another user.

Punto de llegada

POST /api/v4/users/:id/statuses

Parametros

Name Description
status[status] requerido (string) must be 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
status[comment] (string) up to 50 character description of the status update
status[created_at] (integer) epoch time to apply status change, defaults to the current time (if this parameter is passed the date must be in the past)
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user', 'user.favorites', 'user.latest', 'user.memberships', 'user.phones', 'user.recents', 'changed_by_user', 'application'

Solicitud

Ruta

POST /api/v4/users/1501/statuses

Encabezados

Content-Type: application/json
Authorization: Bearer XxZSpzmYvUwCsHqR8QruSB1JJtlDmx9b8wKkdHTTinU

Cuerpo

{
  "status": {
    "status": "in",
    "comment": "In at HQ"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/1501/statuses" -d '{"status":{"status":"in","comment":"In at HQ"}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer XxZSpzmYvUwCsHqR8QruSB1JJtlDmx9b8wKkdHTTinU"

Respuesta

Simulated Response

Campos de respuesta

Name Description
statuses (object) the newly created status object

Estado

201

Encabezados

etag: W/"eb31f483bf4a23e2615c7614f3577f6d"

Cuerpo

{
  "statuses": {
    "status": "in",
    "comment": "In at HQ",
    "automatic": false,
    "user_id": "1501",
    "changed_by_user_id": "1500",
    "created_at": 1777391197
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1773071197,
      "beacons": 1769186797,
      "desktop_presences": 1774194397,
      "favorites": 1769705197,
      "fences": 1776440797,
      "groups": 1769013997,
      "networks": 1776527197,
      "roles": 1777391197,
      "settings": 1777391197
    },
    "emergency": null
  }
}

Create a status update for a user without attribution

Changes a user’s status, but does so without populating the admin that did it. The user that is authenticated must have a role that’s permitted to set up tablet access.

Punto de llegada

POST /api/v4/users/:id/statuses_without_fingerprint

Parametros

Name Description
status[status] requerido (string) must be 'in', 'remote', 'busy', 'break', 'out', 'sick', 'vacation', or 'toggle'
status[comment] (string/hash) string is up to 50 character description of the status update, hash would contain values for 'in' and 'out' for toggle, and the API will choose the appropriate one
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user', 'user.favorites', 'user.latest', 'user.memberships', 'user.phones', 'user.recents', 'changed_by_user', 'application'

Solicitud

Ruta

POST /api/v4/users/1512/statuses_without_fingerprint

Encabezados

Content-Type: application/json
Authorization: Bearer T7lqi66bxYMcnKozOKiOTmrGh0XaUU64O-Ioad2Riis

Cuerpo

{
  "status": {
    "status": "in",
    "comment": "In at HQ"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/1512/statuses_without_fingerprint" -d '{"status":{"status":"in","comment":"In at HQ"}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer T7lqi66bxYMcnKozOKiOTmrGh0XaUU64O-Ioad2Riis"

Respuesta

Simulated Response

Campos de respuesta

Name Description
statuses (object) the newly created status object

Estado

201

Encabezados

etag: W/"88c6123ecc9a53ec6d3a728be0dd6599"

Cuerpo

{
  "statuses": {
    "status": "in",
    "comment": "In at HQ",
    "automatic": false,
    "user_id": "1512",
    "changed_by_user_id": null,
    "created_at": 1777391198
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1769964398,
      "beacons": 1776872798,
      "desktop_presences": 1772815598,
      "favorites": 1776095198,
      "fences": 1771087598,
      "groups": 1775835998,
      "networks": 1773243998,
      "roles": 1777391198,
      "settings": 1777391198
    },
    "emergency": null,
    "update_available": false
  }
}

Create a status update for the current user

Changes the current user’s status. Users must have a role that permits managing their own current status or their own past statuses.

Punto de llegada

POST /api/v4/users/my/statuses

Parametros

Name Description
status[status] requerido (string) must be 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
status[comment] (st`ring) up to 50 character description of the status update
status[created_at] (integer) epoch time to apply status change, defaults to the current time (if this parameter is passed the date must be in the past)
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user', 'user.favorites', 'user.latest', 'user.memberships', 'user.phones', 'user.recents', 'changed_by_user', 'application'

Solicitud

Ruta

POST /api/v4/users/my/statuses

Encabezados

Content-Type: application/json
Authorization: Bearer 1g7M7kjt1LoAaC3zSBwF_BrwgScKWQbNjkeUJTSQFE4

Cuerpo

{
  "status": {
    "status": "in",
    "comment": "In at HQ"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/my/statuses" -d '{"status":{"status":"in","comment":"In at HQ"}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 1g7M7kjt1LoAaC3zSBwF_BrwgScKWQbNjkeUJTSQFE4"

Respuesta

Simulated Response

Campos de respuesta

Name Description
statuses (object) the newly created status object

Estado

201

Encabezados

etag: W/"f56cd6ccab22226698d73b9d63b8354d"

Cuerpo

{
  "statuses": {
    "status": "in",
    "comment": "In at HQ",
    "automatic": false,
    "user_id": "1490",
    "changed_by_user_id": null,
    "created_at": 1777391197
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1772124397,
      "beacons": 1769705197,
      "desktop_presences": 1775144797,
      "favorites": 1771692397,
      "fences": 1775317597,
      "groups": 1774021597,
      "networks": 1772901997,
      "roles": 1777391197,
      "settings": 1777391197
    },
    "emergency": null
  }
}

Create a user

Creates a new user. When this is completed, the user will be sent a welcome email from Simple In/Out with a link to choose their own password. Users must have a role that permits managing the company/users to create users. Companies are limited to the number of users their plan supports, and attempting to add more users will result in a greater_than error on the base parameter.

Punto de llegada

POST /api/v4/users

Parametros

Name Description
user[email] requerido (string) new user's email address
user[name] requerido (string) new user's full name
user[details] (string) additional text information about the user
user[lang] (string) preferred locale of the user defaulting to the locale of the authorized user, can be en, en-au, en-ca, en-gb, de, es, fr, fr-ca
user[image_url] (string) url of an image for the user, must be an https url
user[phones_attributes] (array) phone objects to attach to the user, each with a 'number' attribute
user[memberships_attributes] (array) membership objects to place the user in the group, each with a 'group_id' attribute
user[role_id] requerido (string) the ID of the role to assign to the user
user[skip_confirmation_email] (boolean) whether to send a welcome email for the new user to choose their password, defaults to false which makes certain the email is sent
only (string) comma-delimited list of fields to render only, possibilities include: 'id', 'name', 'email', 'image_url', 'details', 'lang', 'created_at', 'updated_at', 'cached_at'
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'badge', 'favorites', 'latest', 'memberships', 'memberships.group', 'permissions', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Solicitud

Ruta

POST /api/v4/users

Encabezados

Content-Type: application/json
Authorization: Bearer cQ1gK3l4uwajYwAZ0bBbso3i9WvShQvJbLyeDJewszg

Cuerpo

{
  "user": {
    "email": "bojack@simplymadeapps.com",
    "name": "Bojack Horseman",
    "details": "Lead Actor",
    "lang": "en",
    "image_url": "https://placehold.it/350x150",
    "phones_attributes": [
      {
        "number": "(199) 419-0229 x409"
      }
    ],
    "memberships_attributes": [
      {
        "group_id": 73
      }
    ],
    "role_id": "4111"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users" -d '{"user":{"email":"bojack@simplymadeapps.com","name":"Bojack Horseman","details":"Lead Actor","lang":"en","image_url":"https://placehold.it/350x150","phones_attributes":[{"number":"(199) 419-0229 x409"}],"memberships_attributes":[{"group_id":73}],"role_id":"4111"}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer cQ1gK3l4uwajYwAZ0bBbso3i9WvShQvJbLyeDJewszg"

Respuesta

Simulated Response

Campos de respuesta

Name Description
users (object) the newly created user object

Estado

201

Encabezados

etag: W/"cadd8ec3090e3cf9658ad073f77b3c45"

Cuerpo

{
  "users": {
    "id": "1514",
    "name": "Bojack Horseman",
    "email": "bojack@simplymadeapps.com",
    "details": "Lead Actor",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "4111",
    "announcements_read_at": 0,
    "created_at": 1777391198,
    "updated_at": 1777391198,
    "cached_at": "1777391198.419813200"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1774194398,
      "beacons": 1773071198,
      "desktop_presences": 1774367198,
      "favorites": 1775576798,
      "fences": 1776440798,
      "groups": 1777391198,
      "networks": 1775835998,
      "roles": 1777391198,
      "settings": 1777391198
    },
    "emergency": null,
    "update_available": false
  }
}

Create/Update user favorites

Creates user favorites (Quick Picks). If user favorites exist, they will be overwritten by the new ones. Users are limited to 10 favorites.

Punto de llegada

POST /api/v4/users/my/favorites

Parametros

Name Description
favorites requerido (array) array of objects consisting of 'status' and 'comment'
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'badge', 'favorites', 'latest', 'memberships', 'memberships.group', 'permissions', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'
only (string) comma-delimited list of fields to render only, possibilities include: 'id', 'name', 'email', 'image_url', 'details', 'lang', 'created_at', 'updated_at', 'cached_at'

Solicitud

Ruta

POST /api/v4/users/my/favorites

Encabezados

Content-Type: application/json
Authorization: Bearer cTRPa-cAaNDQokPt8X4EiMoGsPKB-PLATWdaGRzt4JI

Cuerpo

{
  "favorites": [
    {
      "status": "in",
      "comment": "At Work"
    },
    {
      "status": "out",
      "comment": "On Vacation"
    }
  ],
  "expand": "favorites"
}

cURL

curl "https://www.simpleinout.com/api/v4/users/my/favorites" -d '{"favorites":[{"status":"in","comment":"At Work"},{"status":"out","comment":"On Vacation"}],"expand":"favorites"}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer cTRPa-cAaNDQokPt8X4EiMoGsPKB-PLATWdaGRzt4JI"

Respuesta

Simulated Response

Campos de respuesta

Name Description
users (object) the newly updated user attributes

Estado

200

Encabezados

etag: W/"2d10d7d36d8c55b7f142018d3aeac462"

Cuerpo

{
  "users": {
    "id": "1531",
    "name": "Sterling Archer",
    "email": "sterling@simplymadeapps.com",
    "details": "Pariatur ullam architecto.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "favorites": [
      {
        "status": "in",
        "comment": "At Work"
      },
      {
        "status": "out",
        "comment": "On Vacation"
      }
    ],
    "role_id": "4145",
    "announcements_read_at": 0,
    "created_at": 1777391198,
    "updated_at": 1777391199,
    "cached_at": "1777391199.011819100"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1776699998,
      "beacons": 1774453598,
      "desktop_presences": 1775403998,
      "favorites": 1773503198,
      "fences": 1775403998,
      "groups": 1775922398,
      "networks": 1769705198,
      "roles": 1777391198,
      "settings": 1777391198
    },
    "emergency": null
  }
}

Delete a user

Deletes an existing user. Users must have a role that permits managing the company/users to delete users. Companies must have at least one user with the Administrator role, if you attempt to delete the last user with the Administrator role, this will result in a less_than error on the base parameter.

Punto de llegada

DELETE /api/v4/users/:id

Solicitud

Ruta

DELETE /api/v4/users/1520

Encabezados

Content-Type: application/json
Authorization: Bearer 6oOCXEAn6itnfXfxt5Q_S7vcejuS9E2-16scUXIYMUc

cURL

curl "https://www.simpleinout.com/api/v4/users/1520" -d '' -X DELETE \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 6oOCXEAn6itnfXfxt5Q_S7vcejuS9E2-16scUXIYMUc"

Respuesta

Simulated Response

Estado

204

Favorite a status for the current user

Designates a previous status update as a favorite for the current user’s Quick Picks.

Punto de llegada

PATCH /api/v4/users/my/statuses/favorite

Parametros

Name Description
status[status] requerido (string) must be 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
status[comment] (string) up to 50 character description of the status update

Solicitud

Ruta

PATCH /api/v4/users/my/statuses/favorite

Encabezados

Content-Type: application/json
Authorization: Bearer 60-7xOFiMNjdt32fRVeM4pirXfLMPb0KDuc0I7RxIyA

Cuerpo

{
  "status": {
    "status": "in",
    "comment": "At Lunch"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/my/statuses/favorite" -d '{"status":{"status":"in","comment":"At Lunch"}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 60-7xOFiMNjdt32fRVeM4pirXfLMPb0KDuc0I7RxIyA"

Respuesta

Simulated Response

Estado

204

Hide a status for the current user

Hides a previous status update from the current user’s Quick Picks.

Punto de llegada

PATCH /api/v4/users/my/statuses/hide

Parametros

Name Description
status[status] requerido (string) must be 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
status[comment] (string) up to 50 character description of the status update

Solicitud

Ruta

PATCH /api/v4/users/my/statuses/hide

Encabezados

Content-Type: application/json
Authorization: Bearer orMd93uuHG7BpOr-vc5bPyHLN_tgpDb7Lx40naQ_g2s

Cuerpo

{
  "status": {
    "status": "in",
    "comment": "At Lunch"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/my/statuses/hide" -d '{"status":{"status":"in","comment":"At Lunch"}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer orMd93uuHG7BpOr-vc5bPyHLN_tgpDb7Lx40naQ_g2s"

Respuesta

Simulated Response

Estado

204

List all archived users

Return a list of all the archived users belonging to the company. Users must have a role that permits managing users.

Punto de llegada

GET /api/v4/users?archived=true

Solicitud

Ruta

GET /api/v4/users?archived=true

Encabezados

Content-Type: application/json
Authorization: Bearer kB4HFeJvJLT75BOHhZcirwAsu_3a8Me84ILOlnohw3E

Parámetros de la consulta

archived=true

cURL

curl -g "https://www.simpleinout.com/api/v4/users?archived=true" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer kB4HFeJvJLT75BOHhZcirwAsu_3a8Me84ILOlnohw3E"

Respuesta

Simulated Response

Estado

200

Encabezados

etag: W/"051c23d027d6a9a16ad25927def435ef"
last-modified: Tue, 28 Apr 2026 15:46:39 GMT

Cuerpo

{
  "users": [
    {
      "id": "1545",
      "name": "Leandro Kunze",
      "email": null,
      "details": "Quibusdam sunt eum.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": null,
      "announcements_read_at": 0,
      "created_at": 1777391199,
      "updated_at": 1777391199,
      "cached_at": "1777391199.579651000"
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 1,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/users?archived=true",
      "last_href": "http://example.org/api/v4/users?archived=true",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1774021599,
      "beacons": 1769532399,
      "desktop_presences": 1776613599,
      "favorites": 1777304799,
      "fences": 1773243999,
      "groups": 1775231199,
      "networks": 1776095199,
      "roles": 1777391199,
      "settings": 1777391199
    },
    "emergency": null,
    "trusted_cached_at": "1777391184.592193100"
  }
}

List all future statuses for a user

List all the scheduled statuses for the specified user. Please note that the user making this request must have a role with permission to view the scheduled statuses of others and the company must have scheduled statuses enabled.

Punto de llegada

GET /api/v4/users/:id/futures

Parametros

Name Description
comment (string) the comment, case sensitive, included with the status change
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'apply_at', 'status', 'comment'
sort_locale (string) the locale to use when sorting by comment, defaults to English (US)
apply_at (string) a date range string for the time the status will be added
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user', 'changed_by_user'
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results

Solicitud

Ruta

GET /api/v4/users/1486/futures

Encabezados

Content-Type: application/json
Authorization: Bearer pZWm-8VWc079QescWBy_VdUalN8wGOfLoOZCtpDNBCw

cURL

curl -g "https://www.simpleinout.com/api/v4/users/1486/futures" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer pZWm-8VWc079QescWBy_VdUalN8wGOfLoOZCtpDNBCw"

Respuesta

Simulated Response

Campos de respuesta

Name Description
futures (array) an array of matching scheduled statuses

Estado

200

Encabezados

etag: W/"5b972138f1a9cc95581611df3b155267"
last-modified: Tue, 28 Apr 2026 15:46:37 GMT

Cuerpo

{
  "futures": [
    {
      "id": "47",
      "status": "out",
      "comment": "Offsite Meeting",
      "completed": false,
      "apply_at": 1777964400,
      "end_at": null,
      "user_id": "1486",
      "changed_by_user_id": null
    },
    {
      "id": "48",
      "status": "out",
      "comment": "Gone Fishing",
      "completed": false,
      "apply_at": 1783422000,
      "end_at": 1783594800,
      "user_id": "1486",
      "changed_by_user_id": "1487"
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 2,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/users/1486/futures?user_id=1486",
      "last_href": "http://example.org/api/v4/users/1486/futures?user_id=1486",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1771778796,
      "beacons": 1770914796,
      "desktop_presences": 1771087596,
      "favorites": 1770828396,
      "fences": 1774367196,
      "groups": 1776872796,
      "networks": 1776440796,
      "roles": 1777391196,
      "settings": 1777391196
    },
    "emergency": null
  }
}

List all future statuses for the current user

List all the scheduled statuses for the current user. Please note that the company must have scheduled statuses enabled for users to see their scheduled statuses.

Punto de llegada

GET /api/v4/users/my/futures

Parametros

Name Description
comment (string) the comment, case sensitive, included with the status change
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'apply_at', 'status', 'comment'
sort_locale (string) the locale to use when sorting by comment, defaults to English (US)
apply_at (string) a date range string for the time the status will be added
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user', 'changed_by_user'
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results

Solicitud

Ruta

GET /api/v4/users/my/futures

Encabezados

Content-Type: application/json
Authorization: Bearer 4XiF1xvHzj564maaZMCfT726TLjMT_Mn1PcGn851GTs

cURL

curl -g "https://www.simpleinout.com/api/v4/users/my/futures" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 4XiF1xvHzj564maaZMCfT726TLjMT_Mn1PcGn851GTs"

Respuesta

Simulated Response

Campos de respuesta

Name Description
futures (array) an array of matching scheduled statuses

Estado

200

Encabezados

etag: W/"5f451529313e7135612c3de1da93f56f"
last-modified: Tue, 28 Apr 2026 15:46:38 GMT

Cuerpo

{
  "futures": [
    {
      "id": "51",
      "status": "out",
      "comment": "Offsite Meeting",
      "completed": false,
      "apply_at": 1777964400,
      "end_at": null,
      "user_id": "1524",
      "changed_by_user_id": null
    },
    {
      "id": "52",
      "status": "out",
      "comment": "Gone Fishing",
      "completed": false,
      "apply_at": 1783422000,
      "end_at": 1783594800,
      "user_id": "1524",
      "changed_by_user_id": "1525"
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 2,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/users/my/futures?user_id=1524",
      "last_href": "http://example.org/api/v4/users/my/futures?user_id=1524",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1769705198,
      "beacons": 1771173998,
      "desktop_presences": 1774885598,
      "favorites": 1777218398,
      "fences": 1769532398,
      "groups": 1775663198,
      "networks": 1770050798,
      "roles": 1777391198,
      "settings": 1777391198
    },
    "emergency": null
  }
}

List all statuses for a user

List all the statuses for the specified user within the time period specified by the ‘created_at’ date range. Users must have a role that permits viewing the past statuses of others if viewing another user. They can always view their own past statuses.

Punto de llegada

GET /api/v4/users/:id/statuses

Parametros

Name Description
created_at requerido (string) a date range string for the time the status was created
comment (string) the comment, case sensitive, included with the status change
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'created_at', 'status', 'comment'
sort_locale (string) the locale to use when sorting by comment, defaults to English (US)
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user', 'user.favorites', 'user.latest', 'user.memberships', 'user.phones', 'user.recents', 'changed_by_user', 'application'
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results

Solicitud

Ruta

GET /api/v4/users/1506/statuses?created_at=1776747600..1777006799

Encabezados

Content-Type: application/json
Authorization: Bearer xYMwmuYgc86ZxS2u53wUB5VqwZTSyQsUUIYwAS1_CXQ

Parámetros de la consulta

created_at=1776747600..1777006799

cURL

curl -g "https://www.simpleinout.com/api/v4/users/1506/statuses?created_at=1776747600..1777006799" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer xYMwmuYgc86ZxS2u53wUB5VqwZTSyQsUUIYwAS1_CXQ"

Respuesta

Simulated Response

Campos de respuesta

Name Description
statuses (array) an array of matching statuses

Estado

200

Encabezados

etag: W/"e6a64de16981dd53439421bd5cf80b86"
last-modified: Wed, 22 Apr 2026 14:00:00 GMT

Cuerpo

{
  "statuses": [
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "1506",
      "changed_by_user_id": null,
      "created_at": 1776754800
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "1506",
      "changed_by_user_id": null,
      "created_at": 1776769200
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "1506",
      "changed_by_user_id": null,
      "created_at": 1776772800
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "1506",
      "changed_by_user_id": null,
      "created_at": 1776790800
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "1506",
      "changed_by_user_id": null,
      "created_at": 1776841200
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "1506",
      "changed_by_user_id": null,
      "created_at": 1776862800
    },
    {
      "status": "out",
      "comment": "Vacation",
      "automatic": false,
      "user_id": "1506",
      "changed_by_user_id": "1507",
      "created_at": 1776866400
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 7,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/users/1506/statuses?created_at=1776747600..1777006799&user_id=1506",
      "last_href": "http://example.org/api/v4/users/1506/statuses?created_at=1776747600..1777006799&user_id=1506",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1774107997,
      "beacons": 1771951597,
      "desktop_presences": 1770223597,
      "favorites": 1774712797,
      "fences": 1775058397,
      "groups": 1769186797,
      "networks": 1775403997,
      "roles": 1777391198,
      "settings": 1777391198
    },
    "emergency": null
  }
}

List all statuses for the current user

List all the statuses for the current user within the time period specified by the ‘created_at’ date range.

Punto de llegada

GET /api/v4/users/my/statuses

Parametros

Name Description
created_at requerido (string) a date range string for the time the status was created
comment (string) the comment, case sensitive, included with the status change
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'created_at', 'status', 'comment'
sort_locale (string) the locale to use when sorting by comment, defaults to English (US)
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user', 'user.favorites', 'user.latest', 'user.memberships', 'user.phones', 'user.recents', 'changed_by_user', 'application'
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results

Solicitud

Ruta

GET /api/v4/users/my/statuses?created_at=1776747600..1777006799

Encabezados

Content-Type: application/json
Authorization: Bearer bfdeTIVbeDI9bpgpkW-0lNgO9HB_J-ctJNXvThGVamQ

Parámetros de la consulta

created_at=1776747600..1777006799

cURL

curl -g "https://www.simpleinout.com/api/v4/users/my/statuses?created_at=1776747600..1777006799" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer bfdeTIVbeDI9bpgpkW-0lNgO9HB_J-ctJNXvThGVamQ"

Respuesta

Simulated Response

Campos de respuesta

Name Description
statuses (array) an array of matching statuses

Estado

200

Encabezados

etag: W/"4c7d820c9c4bd32b9b63205e2709dcb6"
last-modified: Wed, 22 Apr 2026 14:00:00 GMT

Cuerpo

{
  "statuses": [
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "1509",
      "changed_by_user_id": null,
      "created_at": 1776754800
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "1509",
      "changed_by_user_id": null,
      "created_at": 1776769200
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "1509",
      "changed_by_user_id": null,
      "created_at": 1776772800
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "1509",
      "changed_by_user_id": null,
      "created_at": 1776790800
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "1509",
      "changed_by_user_id": null,
      "created_at": 1776841200
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "1509",
      "changed_by_user_id": null,
      "created_at": 1776862800
    },
    {
      "status": "out",
      "comment": "Vacation",
      "automatic": false,
      "user_id": "1509",
      "changed_by_user_id": "1510",
      "created_at": 1776866400
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 7,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/users/my/statuses?created_at=1776747600..1777006799&user_id=1509",
      "last_href": "http://example.org/api/v4/users/my/statuses?created_at=1776747600..1777006799&user_id=1509",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1777045598,
      "beacons": 1774626398,
      "desktop_presences": 1771433198,
      "favorites": 1772729198,
      "fences": 1771692398,
      "groups": 1775835998,
      "networks": 1769618798,
      "roles": 1777391198,
      "settings": 1777391198
    },
    "emergency": null
  }
}

List all users

Return a list of all the users belonging to the company. Users must have a role that permits viewing users.

Punto de llegada

GET /api/v4/users

Parametros

Name Description
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results
name (string) return users with this name
email (string) return users with this email
id (array) return users by an array of ids
created_at (string) a date range string for the time this user was created
group_id (string/array) return users belonging to a group id, which can be a string or array in the form of group_id[]=INT
status (string) return users whose current status matches, which can be a comma-delimited list of statuses
cached_at (integer/float) return users updated that have made a significant change since an epoch time, accurate to nanoseconds
global[query] (string) a search term to filter users by name or current status comment
global[locale] (string) the locale to use for filtering results, can be en, en-au, en-ca, en-gb, de, es, fr, fr-ca, defaults to 'en'
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'name', 'details', 'email', 'cached_at', 'created_at', 'status.comment', 'status.status', 'status.created_at'
sort_locale (string) the locale to use when sorting by comment, defaults to English (US)
only (string) comma-delimited list of fields to render only, possibilities include: 'id', 'name', 'email', 'image_url', 'details', 'lang', 'created_at', 'updated_at', 'cached_at'
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'badge', 'favorites', 'latest', 'memberships', 'memberships.group', 'permissions', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Solicitud

Ruta

GET /api/v4/users

Encabezados

Content-Type: application/json
Authorization: Bearer qYrO9Fjq3or2jkKMkTxgueenyhyDbJdzuLQSwhUV5Kk

cURL

curl -g "https://www.simpleinout.com/api/v4/users" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer qYrO9Fjq3or2jkKMkTxgueenyhyDbJdzuLQSwhUV5Kk"

Respuesta

Simulated Response

Campos de respuesta

Name Description
users (array) an array of users
trusted_cached_at (string in the meta object) the server time minus an amount to account for network delivery time

Estado

200

Encabezados

etag: W/"5f23406344b66fcc493ac44763e48639"
last-modified: Tue, 28 Apr 2026 15:46:38 GMT

Cuerpo

{
  "users": [
    {
      "id": "1515",
      "name": "Malory Archer",
      "email": "malory@simplymadeapps.com",
      "details": "Neque laboriosam repellendus.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": "4115",
      "announcements_read_at": 0,
      "created_at": 1777391198,
      "updated_at": 1777391198,
      "cached_at": "1777391198.459135000"
    },
    {
      "id": "1516",
      "name": "Sterling Archer",
      "email": "sterling@simplymadeapps.com",
      "details": "Voluptate beatae magnam.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": "4117",
      "announcements_read_at": 0,
      "created_at": 1777391198,
      "updated_at": 1777391198,
      "cached_at": "1777391198.468221000"
    },
    {
      "id": "1517",
      "name": "Lana Kane",
      "email": "lana@simplymadeapps.com",
      "details": "Necessitatibus dignissimos voluptates.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": "4117",
      "announcements_read_at": 0,
      "created_at": 1777391198,
      "updated_at": 1777391198,
      "cached_at": "1777391198.478506000"
    },
    {
      "id": "1518",
      "name": "Ray Gillette",
      "email": "ray@simplymadeapps.com",
      "details": "Officia sunt iusto.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": "4117",
      "announcements_read_at": 0,
      "created_at": 1777391198,
      "updated_at": 1777391198,
      "cached_at": "1777391198.486277000"
    }
  ],
  "meta": {
    "paging": {
      "page": 1,
      "page_size": 25,
      "page_count": 1,
      "count": 4,
      "previous_page": null,
      "next_page": null,
      "first_href": "http://example.org/api/v4/users",
      "last_href": "http://example.org/api/v4/users",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1770309998,
      "beacons": 1775576798,
      "desktop_presences": 1772297198,
      "favorites": 1770482798,
      "fences": 1770828398,
      "groups": 1769791598,
      "networks": 1774971998,
      "roles": 1777391198,
      "settings": 1777391198
    },
    "emergency": null,
    "trusted_cached_at": "1777391183.498228000"
  }
}

Mark announcements as read

Marks announcements beforehand as read. If an epoch time from the future is passed in, it will become the current time.

Punto de llegada

POST /api/v4/users/my/announcements/read

Parametros

Name Description
read_at requerido (integer) epoch time denoting all announcements before this time have been read

Solicitud

Ruta

POST /api/v4/users/my/announcements/read

Encabezados

Content-Type: application/json
Authorization: Bearer kv2Zuhhxhq-AMsG0mBHFnBf128m7eS2XUu7FEjT22e8

cURL

curl "https://www.simpleinout.com/api/v4/users/my/announcements/read" -d '' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer kv2Zuhhxhq-AMsG0mBHFnBf128m7eS2XUu7FEjT22e8"

Respuesta

Simulated Response

Campos de respuesta

Name Description
users (object) the newly updated user attributes

Estado

204

Retrieve a user

Retrieve an existing user. Users must have a role that permits viewing users.

Punto de llegada

GET /api/v4/users/:id

Parametros

Name Description
only (string) comma-delimited list of fields to render only, possibilities include: 'id', 'name', 'email', 'image_url', 'details', 'lang', 'created_at', 'updated_at', 'cached_at'
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'badge', 'favorites', 'latest', 'memberships', 'memberships.group', 'permissions', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Solicitud

Ruta

GET /api/v4/users/1495

Encabezados

Content-Type: application/json
Authorization: Bearer E-UoJ6-RLorU1dQzp4JyQClI-B8GVcoLqCEJXaQKlbA

cURL

curl -g "https://www.simpleinout.com/api/v4/users/1495" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer E-UoJ6-RLorU1dQzp4JyQClI-B8GVcoLqCEJXaQKlbA"

Respuesta

Simulated Response

Campos de respuesta

Name Description
users (object) a user object

Estado

200

Encabezados

etag: W/"d40294ab7482164870348d439d07a621"
last-modified: Tue, 28 Apr 2026 15:46:37 GMT

Cuerpo

{
  "users": {
    "id": "1495",
    "name": "Sterling Archer",
    "email": "sterling@simplymadeapps.com",
    "details": "Et porro inventore.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "4077",
    "announcements_read_at": 0,
    "created_at": 1777391197,
    "updated_at": 1777391197,
    "cached_at": "1777391197.631971100"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1777045597,
      "beacons": 1775058397,
      "desktop_presences": 1772984797,
      "favorites": 1775663197,
      "fences": 1769100397,
      "groups": 1777218397,
      "networks": 1768927597,
      "roles": 1777391197,
      "settings": 1777391197
    },
    "emergency": null
  }
}

Retrieve the current user

Retrieve the current user who is authorized.

Punto de llegada

GET /api/v4/users/my

Parametros

Name Description
only (string) comma-delimited list of fields to render only, possibilities include: 'id', 'name', 'email', 'image_url', 'details', 'lang', 'created_at', 'updated_at', 'cached_at'
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'badge', 'favorites', 'latest', 'memberships', 'memberships.group', 'permissions', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Solicitud

Ruta

GET /api/v4/users/my

Encabezados

Content-Type: application/json
Authorization: Bearer v91E7KEYHXgks4oz7gtNBW1LrKYCKdFk8GObFPgsFa8

cURL

curl -g "https://www.simpleinout.com/api/v4/users/my" -X GET \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer v91E7KEYHXgks4oz7gtNBW1LrKYCKdFk8GObFPgsFa8"

Respuesta

Simulated Response

Campos de respuesta

Name Description
users (object) a user object

Estado

200

Encabezados

etag: W/"60ef65d5169d0da84e76b28fa1ab0d01"
last-modified: Tue, 28 Apr 2026 15:46:38 GMT

Cuerpo

{
  "users": {
    "id": "1527",
    "name": "Sterling Archer",
    "email": "sterling@simplymadeapps.com",
    "details": "Officiis quaerat aut.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "4137",
    "announcements_read_at": 0,
    "created_at": 1777391198,
    "updated_at": 1777391198,
    "cached_at": "1777391198.889318000"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1771001198,
      "beacons": 1773935198,
      "desktop_presences": 1771260398,
      "favorites": 1770482798,
      "fences": 1770914798,
      "groups": 1774367198,
      "networks": 1777218398,
      "roles": 1777391198,
      "settings": 1777391198
    },
    "emergency": null
  }
}

Unarchive a user

Unarchives an archived user. Users must have a role that permits managing users.

Punto de llegada

POST /api/v4/users/:id/unarchive

Parametros

Name Description
user[email] requerido (string) the user's email address
user[name] (string) the user's full name
user[details] (string) additional text information about the user
user[lang] (string) preferred locale of the user defaulting to the locale of the authorized user, can be en, en-au, en-ca, en-gb, de, es, fr, fr-ca
user[phones_attributes] (array) phone objects to attach to the user, each with a 'number' attribute
user[memberships_attributes] (array) membership objects to place the user in the group, each with a 'group_id' attribute
user[role_id] requerido (string) the ID of the role to assign to the user
only (string) comma-delimited list of fields to render only, possibilities include: 'id', 'name', 'email', 'image_url', 'details', 'lang', 'created_at', 'updated_at', 'cached_at'
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'badge', 'favorites', 'latest', 'memberships', 'memberships.group', 'permissions', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Solicitud

Ruta

POST /api/v4/users/1599/unarchive

Encabezados

Content-Type: application/json
Authorization: Bearer o23opM0vr0lv8BTVd2Ys_ekYd-v6dwxI4gEz9Fx_6w8

Cuerpo

{
  "user": {
    "email": "bojack@simplymadeapps.com",
    "role_id": "4319"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/1599/unarchive" -d '{"user":{"email":"bojack@simplymadeapps.com","role_id":"4319"}}' -X POST \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer o23opM0vr0lv8BTVd2Ys_ekYd-v6dwxI4gEz9Fx_6w8"

Respuesta

Simulated Response

Estado

200

Encabezados

etag: W/"5154dafc29ade38f4c0e7041df606e5e"

Cuerpo

{
  "users": {
    "id": "1599",
    "name": "Javier Bode",
    "email": "bojack@simplymadeapps.com",
    "details": "Quae dolores veniam.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "4319",
    "created_at": 1777391202,
    "updated_at": 1777391202,
    "cached_at": "1777391202.235363000"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1776181602,
      "beacons": 1771778802,
      "desktop_presences": 1772729202,
      "favorites": 1774108002,
      "fences": 1770396402,
      "groups": 1775058402,
      "networks": 1776959202,
      "roles": 1777391202,
      "settings": 1777391202
    },
    "emergency": null
  }
}

Unfavorite a status for the current user

Undoes a previous status’ favorite designation for the current user’s Quick Picks.

Punto de llegada

PATCH /api/v4/users/my/statuses/unfavorite

Parametros

Name Description
status[status] requerido (string) must be 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
status[comment] (string) up to 50 character description of the status update

Solicitud

Ruta

PATCH /api/v4/users/my/statuses/unfavorite

Encabezados

Content-Type: application/json
Authorization: Bearer ushRFUyWdqbnIfxn21iOSk6kWqhs1AE2yOw321FUkbM

Cuerpo

{
  "status": {
    "status": "in",
    "comment": "At Lunch"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/my/statuses/unfavorite" -d '{"status":{"status":"in","comment":"At Lunch"}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer ushRFUyWdqbnIfxn21iOSk6kWqhs1AE2yOw321FUkbM"

Respuesta

Simulated Response

Estado

204

Update a user

Updates an existing user. Users must have a role that permits managing the company/users to update users. Companies must have at least one user with the Administrator role, if you attempt to change the role of the last user with the Administrator role, this will result in a less_than error on the base parameter.

Punto de llegada

PATCH /api/v4/users/:id

Parametros

Name Description
user[email] (string) new user's email address
user[name] (string) new user's full name
user[image_url] (string) url of an image for the user, must be an https url
user[details] (string) additional text information about the user
user[lang] (string) preferred locale of the user, can be en, en-au, en-ca, en-gb, de, es, fr, fr-ca
user[phones_attributes] (array) phone objects to attach to the user if both 'id' and 'number' are passed in, the existing phone number will be updated if just 'number' is passed in, a new phone will be added if both 'id' and '_destroy' are passed in ('_destroy' being truthy like 'true' or '1'), the phone number will be removed
user[memberships_attributes] (array) group objects to attach to the user if both 'id' and 'group_id' are passed in, the existing membership will be updated if just 'group_id' is passed in, a new membership will be added if both 'id' and '_destroy' are passed in ('_destroy' being truthy like 'true' or '1'), the group membership will be removed
user[role_id] (string) the ID of the role to assign to the user
only (string) comma-delimited list of fields to render only, possibilities include: 'id', 'name', 'email', 'image_url', 'details', 'lang', 'created_at', 'updated_at', 'cached_at'
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'badge', 'favorites', 'latest', 'memberships', 'memberships.group', 'permissions', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Solicitud

Ruta

PATCH /api/v4/users/1533

Encabezados

Content-Type: application/json
Authorization: Bearer x4UqUu42nhM4U9Z7fqxY9NwyBNJtabJ_rJJCi_zpSdc

Cuerpo

{
  "user": {
    "phones_attributes": [
      {
        "number": "687-470-9660 x641"
      }
    ],
    "memberships_attributes": [
      {
        "group_id": 76
      }
    ]
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/1533" -d '{"user":{"phones_attributes":[{"number":"687-470-9660 x641"}],"memberships_attributes":[{"group_id":76}]}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer x4UqUu42nhM4U9Z7fqxY9NwyBNJtabJ_rJJCi_zpSdc"

Respuesta

Simulated Response

Campos de respuesta

Name Description
users (object) the newly updated user attributes

Estado

200

Encabezados

etag: W/"b092cded5c923f765ea5104484972f48"

Cuerpo

{
  "users": {
    "id": "1533",
    "name": "Sterling Archer",
    "email": "sterling@simplymadeapps.com",
    "details": "Aliquid tempora molestias.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "4149",
    "announcements_read_at": 0,
    "created_at": 1777391199,
    "updated_at": 1777391199,
    "cached_at": "1777391199.080792000"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1772815599,
      "beacons": 1775835999,
      "desktop_presences": 1770655599,
      "favorites": 1773675999,
      "fences": 1769791599,
      "groups": 1777391199,
      "networks": 1774799199,
      "roles": 1777391199,
      "settings": 1777391199
    },
    "emergency": null,
    "update_available": false
  }
}

Update the current user

Updates the currently authorized user. The current user cannot update their own role.

Punto de llegada

PATCH /api/v4/users/my

Parametros

Name Description
user[email] (string) new user's email address
user[name] (string) new user's full name
user[image_url] (string) url of an image for the user, must be an https url
user[details] (string) additional text information about the user
user[lang] (string) preferred locale of the user, can be en, en-au, en-ca, en-gb, de, es, fr, fr-ca
user[phones_attributes] (array) phone objects to attach to the user if both 'id' and 'number' are passed in, the existing phone number will be updated if just 'number' is passed in, a new phone will be added if both 'id' and '_destroy' are passed in ('_destroy' being truthy like 'true' or '1'), the phone number will be removed
user[memberships_attributes] (array) group objects to attach to the user if both 'id' and 'group_id' are passed in, the existing membership will be updated if just 'group_id' is passed in, a new membership will be added if both 'id' and '_destroy' are passed in ('_destroy' being truthy like 'true' or '1'), the group membership will be removed
only (string) comma-delimited list of fields to render only, possibilities include: 'id', 'name', 'email', 'image_url', 'details', 'lang', 'created_at', 'updated_at', 'cached_at'
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'badge', 'favorites', 'latest', 'memberships', 'memberships.group', 'permissions', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Solicitud

Ruta

PATCH /api/v4/users/my

Encabezados

Content-Type: application/json
Authorization: Bearer CbSYPoT7fKUeB1ybW0h3HzlPKj9xuQyAEfFLK6BDGSo

Cuerpo

{
  "user": {
    "phones_attributes": [
      {
        "number": "(591) 562-1400 x8059"
      }
    ],
    "memberships_attributes": [
      {
        "group_id": 75
      }
    ]
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/my" -d '{"user":{"phones_attributes":[{"number":"(591) 562-1400 x8059"}],"memberships_attributes":[{"group_id":75}]}}' -X PATCH \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer CbSYPoT7fKUeB1ybW0h3HzlPKj9xuQyAEfFLK6BDGSo"

Respuesta

Simulated Response

Campos de respuesta

Name Description
users (object) the newly updated user attributes

Estado

200

Encabezados

etag: W/"4e0ab080e56d6f67aac2b4da9de7eb3b"

Cuerpo

{
  "users": {
    "id": "1522",
    "name": "Kurt Treutel",
    "email": "mallory@simplymadeapps.com",
    "details": "In repudiandae quia.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "4127",
    "announcements_read_at": 0,
    "created_at": 1777391198,
    "updated_at": 1777391198,
    "cached_at": "1777391198.779023200"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1777045598,
      "beacons": 1777304798,
      "desktop_presences": 1772469998,
      "favorites": 1775749598,
      "fences": 1770914798,
      "groups": 1777391198,
      "networks": 1772383598,
      "roles": 1777391198,
      "settings": 1777391198
    },
    "emergency": null,
    "update_available": false
  }
}