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.

Rate Limiting

APIv4 is protected by daily rate limits. Currently, your application can access APIv4 up to 10,000 times per 24 hour period. Every request to APIv4 will return with two headers: X-RateLimit-Limit and X-RateLimit-Remaining. X-RateLimit-Limit will indicate the total number of requests that can be made against APIv4 over a 24 hour period (always 10,000 for now). X-RateLimit-Remaining will indicate how many requests you have left.

When you’ve run out of requests, APIv4 will return a HTTP status of 429 indicating Too Many Requests.

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.


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/update/delete the object, some data was either missing or invalid. The full message of this error will provide more explanation.


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.


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.

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,
      "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.

Endpoint

POST /api/v4/announcements

Parameters

Name Description
announcement[message] required (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'

Request

Route

POST /api/v4/announcements

Headers

Content-Type: application/json
Authorization: Bearer L4Z4D1pB7pQ3cK90JBDGgg-9LVk2Pg_ReVM4Vc_ORN0

Body

{
  "announcement": {
    "message": "Evacuate the building",
    "push": false,
    "group_id": "10540",
    "expires_at": 1758121887
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/announcements" -d '{"announcement":{"message":"Evacuate the building","push":false,"group_id":"10540","expires_at":1758121887}}' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer L4Z4D1pB7pQ3cK90JBDGgg-9LVk2Pg_ReVM4Vc_ORN0"

Response

Simulated Response

Response Fields

Name Description
announcements (object) the newly created announcement attributes

Status

201

Headers

ETag: W/"40d516c7c162fe299c7010805d18d78a"

Body

{
  "announcements": {
    "id": "1742",
    "group_id": "10540",
    "user_id": "198694",
    "message": "Evacuate the building",
    "push": false,
    "expires_at": 1758121887,
    "created_at": 1758035487,
    "updated_at": 1758035487
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1758035487,
      "beacons": 1752160287,
      "desktop_presences": 1751382687,
      "favorites": 1757862687,
      "fences": 1754579487,
      "groups": 1758035487,
      "networks": 1751901087,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "emergency": null
  }
}

Delete an announcement

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

Endpoint

DELETE /api/v4/announcements/:id

Request

Route

DELETE /api/v4/announcements/1741

Headers

Content-Type: application/json
Authorization: Bearer xBU5bR9jdIPIAFhYrY-D1dIdrzqQBt9_MRCcaKYj6FU

cURL

curl "https://www.simpleinout.com/api/v4/announcements/1741" -d '' -X DELETE \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer xBU5bR9jdIPIAFhYrY-D1dIdrzqQBt9_MRCcaKYj6FU"

Response

Simulated Response

Status

204

List all announcements

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

Endpoint

GET /api/v4/announcements

Parameters

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'

Request

Route

GET /api/v4/announcements

Headers

Content-Type: application/json
Authorization: Bearer JuuApPgj4uP6x_cqk9AXd3Tczw36ylw0iTdLOlReXWY

cURL

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

Response

Simulated Response

Response Fields

Name Description
announcements (array) an array of announcements

Status

200

Headers

ETag: W/"d7d0e89ccdb7f08eb56099187ee4959a"
Last-Modified: Tue, 16 Sep 2025 15:11:27 GMT

Body

{
  "announcements": [
    {
      "id": "1743",
      "group_id": null,
      "user_id": "198696",
      "message": "Quia et quibusdam et.",
      "push": false,
      "expires_at": 1758121887,
      "created_at": 1758035487,
      "updated_at": 1758035487
    },
    {
      "id": "1744",
      "group_id": null,
      "user_id": "198696",
      "message": "Commodi animi illum facere.",
      "push": false,
      "expires_at": 1758121887,
      "created_at": 1758035487,
      "updated_at": 1758035487
    }
  ],
  "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": 1758035487,
      "beacons": 1752160287,
      "desktop_presences": 1755529887,
      "favorites": 1757603487,
      "fences": 1757344287,
      "groups": 1750605087,
      "networks": 1752765087,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "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.

Endpoint

GET /oauth/authorize

Parameters

Name Description
response_type required (string) the type of authorization to use, in this case always 'code'
client_id required (string) your API client key
redirect_uri required (string) the URI to return the user to after authenticating, must match those registered with Simple In/Out
scope required (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'

Request

Route

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

Headers

Content-Type: application/json

Query Parameters

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 "Version: HTTP/1.0" \
	-H "Content-Type: application/json"

Response

Simulated Response

Status

302

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.

Endpoint

POST /oauth/token

Parameters

Name Description
grant_type required (string) type of grant to use
client_id required (string) your API client key
client_secret required (string) your API client secret
code required (string) if using Authorization Code grant, this is the code that is returned from Simple In/Out
redirect_uri required (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'

Request

Route

POST /oauth/token

Headers

Content-Type: application/json

Body

{
  "grant_type": "authorization_code",
  "client_id": "YOUR_API_CLIENT_ID",
  "client_secret": "YOUR_API_CLIENT_SECRET",
  "code": "vjWTcYsj2Sd0HXGxf1HH8LlSYSrJ5Yr7WKZIDzZkzI4",
  "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":"vjWTcYsj2Sd0HXGxf1HH8LlSYSrJ5Yr7WKZIDzZkzI4","redirect_uri":"https://www.simplymadeapps.com/redirect/url"}' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json"

Response

Simulated Response

Response Fields

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.

Status

200

Headers

ETag: W/"ea8982011d734321cdd4d093c3a7a77d"

Body

{
  "access_token": "wA2HAQp7Me5Vi4lVWSx1e459tVvJDRQqSFHClduROkk",
  "token_type": "Bearer",
  "expires_in": 7200,
  "refresh_token": "61SDgIcFMcSGYctM3tSBv9DTueTXPnouFKrc7_c48xU",
  "scope": "write",
  "created_at": 1758035484,
  "user": {
    "id": "198561",
    "company_id": "102139",
    "roles": {
      "id": "452322",
      "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,
      "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": 1758035484,
      "updated_at": 1758035484
    }
  }
}

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.

Endpoint

POST /oauth/token

Parameters

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

Request

Route

POST /oauth/token

Headers

Content-Type: application/json

Body

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

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":"f20ai65f5dbg63qb3redf8zfmjm5ngs3"}' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json"

Response

Simulated Response

Response Fields

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.

Status

200

Headers

ETag: W/"24467a10cbc529726151cc5be3142e1f"

Body

{
  "access_token": "KHZrhKEqR3L6n1-o8gTm0sHa8Z_3wtnssWpqUWZXpJA",
  "token_type": "Bearer",
  "expires_in": 604800,
  "refresh_token": "I_5RSLEqbBTV_qvKP9gvEwiKqEgJOr2wxcCUKycRZs8",
  "scope": "write",
  "created_at": 1758035484,
  "user": {
    "id": "198566",
    "company_id": "102142",
    "roles": {
      "id": "452334",
      "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,
      "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": 1758035484,
      "updated_at": 1758035484
    }
  }
}

Revoke a token

Revokes a token, rendering it invalid.

Endpoint

POST /oauth/revoke

Parameters

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

Request

Route

POST /oauth/revoke

Headers

Content-Type: application/json

Body

{
  "client_id": "2004021899665",
  "client_secret": "7630510899738",
  "token": "uVs7PhxoD4tOZD5_FhmP5HEMyMTLSybna3OT0dYX-yo"
}

cURL

curl "https://www.simpleinout.com/oauth/revoke" -d '{"client_id":"2004021899665","client_secret":"7630510899738","token":"uVs7PhxoD4tOZD5_FhmP5HEMyMTLSybna3OT0dYX-yo"}' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json"

Response

Simulated Response

Status

200

Headers

ETag: W/"44136fa355b3678a1146ad16f7e8649e"

Body

{
}

Token information

Provides details about the OAuth token.

Endpoint

GET /oauth/token/info

Request

Route

GET /oauth/token/info

Headers

Content-Type: application/json
Authorization: Bearer 9lglTIu6MYe1wrxV9psjl6XdPmqWtkqMdoR761jY7o0

cURL

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

Response

Simulated Response

Response Fields

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

Status

200

Headers

ETag: W/"6fca27a44184cd661b49850db8178e2d"

Body

{
  "resource_owner_id": 198565,
  "scope": [
    "read"
  ],
  "expires_in": 604800,
  "application": {
    "uid": "9943787243578"
  },
  "created_at": 1758035484
}

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.

Endpoint

POST /api/v4/beacons

Parameters

Name Description
beacon[name] required (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'

Request

Route

POST /api/v4/beacons

Headers

Content-Type: application/json
Authorization: Bearer 54tgcb3LFbUu-tG43gAZQMwoQsyPcg9fHNsK1cQvoL4

Body

{
  "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 "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 54tgcb3LFbUu-tG43gAZQMwoQsyPcg9fHNsK1cQvoL4"

Response

Simulated Response

Response Fields

Name Description
beacons (object) the newly created beacon attributes

Status

201

Headers

ETag: W/"6395eb3a72c8d3447088553674ca407a"

Body

{
  "beacons": {
    "id": "4995",
    "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": 1758035487,
    "updated_at": 1758035487
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1753197086,
      "beacons": 1758035487,
      "desktop_presences": 1754061086,
      "favorites": 1757257886,
      "fences": 1750777886,
      "groups": 1754406686,
      "networks": 1758035486,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "emergency": null
  }
}

Delete a beacon

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

Endpoint

DELETE /api/v4/beacons/:id

Request

Route

DELETE /api/v4/beacons/4994

Headers

Content-Type: application/json
Authorization: Bearer IMEi7zLPulCSfoTw7jORvEs3EtLPU4mwiEqLSsxF_LU

cURL

curl "https://www.simpleinout.com/api/v4/beacons/4994" -d '' -X DELETE \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer IMEi7zLPulCSfoTw7jORvEs3EtLPU4mwiEqLSsxF_LU"

Response

Simulated Response

Status

204

List all beacons

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

Endpoint

GET /api/v4/beacons

Parameters

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

Request

Route

GET /api/v4/beacons

Headers

Content-Type: application/json
Authorization: Bearer DmUOaExuPRSdXDdorrwNMh7AFyeetDH-bNA_P8EdnMA

cURL

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

Response

Simulated Response

Response Fields

Name Description
beacons (array) an array of beacons

Status

200

Headers

ETag: W/"7c33b18d0278f163322ca12bea1d838f"
Last-Modified: Tue, 16 Sep 2025 15:11:26 GMT

Body

{
  "beacons": [
    {
      "id": "4992",
      "name": "1 - Rachaelshire",
      "uuid": "8E3B0973-99F7-4F02-AFAE-E5F6B0955AC9",
      "comment_on_entry": "In at 1 - Rachaelshire",
      "comment_on_exit": "Left 1 - Rachaelshire",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1758035486,
      "updated_at": 1758035486
    },
    {
      "id": "4993",
      "name": "2 - West Nataliahaven",
      "uuid": "CB5ED80A-1F58-49F0-A086-D9AE30C732AA",
      "comment_on_entry": "In at 2 - West Nataliahaven",
      "comment_on_exit": "Left 2 - West Nataliahaven",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1758035486,
      "updated_at": 1758035486
    }
  ],
  "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": 1752333086,
      "beacons": 1758035486,
      "desktop_presences": 1755529886,
      "favorites": 1750691486,
      "fences": 1756739486,
      "groups": 1756307486,
      "networks": 1753888286,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "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.

Endpoint

PATCH /api/v4/beacons/:id

Parameters

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'

Request

Route

PATCH /api/v4/beacons/4996

Headers

Content-Type: application/json
Authorization: Bearer acWMb83koTICk-CGTjk6VHUYcEpLJ_eDDuWAAdb-Cj0

Body

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

cURL

curl "https://www.simpleinout.com/api/v4/beacons/4996" -d '{"beacon":{"name":"My Renamed Office"}}' -X PATCH \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer acWMb83koTICk-CGTjk6VHUYcEpLJ_eDDuWAAdb-Cj0"

Response

Simulated Response

Response Fields

Name Description
beacons (object) the newly updated beacon attributes

Status

200

Headers

ETag: W/"d340704eee89b1d8f9c8c8cbdcbd28f8"

Body

{
  "beacons": {
    "id": "4996",
    "name": "My Renamed Office",
    "uuid": "4F00EB2B-38BC-451C-BBCB-98C13962030C",
    "comment_on_entry": "In at 4 - Susannemouth",
    "comment_on_exit": "Left 4 - Susannemouth",
    "entry": true,
    "exit": true,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "created_at": 1758035487,
    "updated_at": 1758035487
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1751296287,
      "beacons": 1758035487,
      "desktop_presences": 1753888287,
      "favorites": 1750518687,
      "fences": 1757517087,
      "groups": 1752073887,
      "networks": 1754579487,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "emergency": null
  }
}

Companies

Retrieve the current company

Return the company the authorized user belongs to.

Endpoint

GET /api/v4/companies/my

Parameters

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

Request

Route

GET /api/v4/companies/my

Headers

Content-Type: application/json
Authorization: Bearer muFLGlKWzxBHOsKLu4IobEjux3jPnPJSal5dcM3DOcY

cURL

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

Response

Simulated Response

Response Fields

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[created_at] (integer) epoch time the company was created

Status

200

Headers

ETag: W/"0f5c416bfafab7a5d562db1db081f3bc"
Last-Modified: Tue, 16 Sep 2025 15:11:27 GMT

Body

{
  "companies": {
    "id": "102213",
    "announcements_enabled": true,
    "available_statuses": [
      "in",
      "out"
    ],
    "name": "Bartoletti, Weber and Turcotte",
    "scheduled_statuses": true,
    "default_role_id": "452620",
    "logo_url": null,
    "created_at": 1758035487
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1749827487,
      "beacons": 1753456287,
      "desktop_presences": 1752073887,
      "favorites": 1750518687,
      "fences": 1755011487,
      "groups": 1755702687,
      "networks": 1752073887,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "emergency": null
  }
}

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.

Endpoint

DELETE /api/v4/futures/:id

Request

Route

DELETE /api/v4/futures/5755

Headers

Content-Type: application/json
Authorization: Bearer cevZ3m2Q3nKQYOLLFGGWDAjNWALqzghaM85Xbd_VSEU

cURL

curl "https://www.simpleinout.com/api/v4/futures/5755" -d '' -X DELETE \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer cevZ3m2Q3nKQYOLLFGGWDAjNWALqzghaM85Xbd_VSEU"

Response

Simulated Response

Status

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.

Endpoint

GET /api/v4/futures

Parameters

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'"
expand (string) comma-delimited list of extra information to include in the response, possibilities include: 'user', 'changed_by_user'

Request

Route

GET /api/v4/futures

Headers

Content-Type: application/json
Authorization: Bearer LX37AHcOCKa89_mZjpgkvdRCh0lPJtPcp1GwcbNM4Rw

cURL

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

Response

Simulated Response

Response Fields

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

Status

200

Headers

ETag: W/"44332d538b5fcdd23cf9dd38da526399"
Last-Modified: Tue, 16 Sep 2025 15:11:27 GMT

Body

{
  "futures": [
    {
      "id": "5753",
      "status": "out",
      "comment": "On Vacation, back Monday",
      "completed": false,
      "apply_at": 1760626800,
      "end_at": 1760886000,
      "user_id": "198683",
      "changed_by_user_id": null
    },
    {
      "id": "5754",
      "status": "out",
      "comment": "At the conference this week",
      "completed": false,
      "apply_at": 1773673200,
      "end_at": null,
      "user_id": "198683",
      "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": 1756653087,
      "beacons": 1755357087,
      "desktop_presences": 1749481887,
      "favorites": 1756566687,
      "fences": 1753369887,
      "groups": 1753283487,
      "networks": 1750605087,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "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.

Endpoint

POST /api/v4/fences

Parameters

Name Description
fence[name] required (string) the name of the fence
fence[latitude] required (float) the latitude of the center point of the fence
fence[longitude] required (float) the longitude of the center point of the fence
fence[radius] required (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'

Request

Route

POST /api/v4/fences

Headers

Content-Type: application/json
Authorization: Bearer TXRmlDRK9nWvS-tP0vzfsHo_8sSRG23YLMugtOW55Nk

Body

{
  "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 "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer TXRmlDRK9nWvS-tP0vzfsHo_8sSRG23YLMugtOW55Nk"

Response

Simulated Response

Response Fields

Name Description
fences (object) the newly created fence attributes

Status

201

Headers

ETag: W/"772b6499f244af1b429330a04daf893e"

Body

{
  "fences": {
    "id": "1837",
    "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": 1758035487,
    "updated_at": 1758035487
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1756998687,
      "beacons": 1752333087,
      "desktop_presences": 1749741087,
      "favorites": 1755616287,
      "fences": 1758035487,
      "groups": 1755529887,
      "networks": 1756221087,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "emergency": null
  }
}

Delete a fence

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

Endpoint

DELETE /api/v4/fences/:id

Request

Route

DELETE /api/v4/fences/1838

Headers

Content-Type: application/json
Authorization: Bearer 6MyYoaJhtmNFi22S1kApGuiLYrp-B984GRMBzR6CFH4

cURL

curl "https://www.simpleinout.com/api/v4/fences/1838" -d '' -X DELETE \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 6MyYoaJhtmNFi22S1kApGuiLYrp-B984GRMBzR6CFH4"

Response

Simulated Response

Status

204

List all fences

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

Endpoint

GET /api/v4/fences

Parameters

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

Request

Route

GET /api/v4/fences

Headers

Content-Type: application/json
Authorization: Bearer VPHvY3QsCZTAH1MVhoOcV_zQSzKoPYhYQC006RxCF1Q

cURL

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

Response

Simulated Response

Response Fields

Name Description
fences (array) an array of fences

Status

200

Headers

ETag: W/"ec1acc67788a4cfbaa5d0687222fd044"
Last-Modified: Tue, 16 Sep 2025 15:11:27 GMT

Body

{
  "fences": [
    {
      "id": "1839",
      "name": "3 - South Rudolph",
      "latitude": "-43.4517966423",
      "longitude": "102.8886213239",
      "radius": 17918,
      "comment_on_entry": "In at 3 - South Rudolph",
      "comment_on_exit": "Left 3 - South Rudolph",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1758035487,
      "updated_at": 1758035487
    },
    {
      "id": "1840",
      "name": "4 - Balistreriport",
      "latitude": "84.1620694106",
      "longitude": "-173.4094987426",
      "radius": 4616,
      "comment_on_entry": "In at 4 - Balistreriport",
      "comment_on_exit": "Left 4 - Balistreriport",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1758035487,
      "updated_at": 1758035487
    }
  ],
  "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": 1755789087,
      "beacons": 1754406687,
      "desktop_presences": 1753629087,
      "favorites": 1754665887,
      "fences": 1758035487,
      "groups": 1757257887,
      "networks": 1749654687,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "emergency": null
  }
}

Update a fence

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

Endpoint

PATCH /api/v4/fences/:id

Parameters

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'

Request

Route

PATCH /api/v4/fences/1836

Headers

Content-Type: application/json
Authorization: Bearer hEqYWqQ1rnpgKj1Ps_YiPbHAv_AsnUhWtGoXR-mhDGg

Body

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

cURL

curl "https://www.simpleinout.com/api/v4/fences/1836" -d '{"fence":{"name":"My Renamed Geofence"}}' -X PATCH \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer hEqYWqQ1rnpgKj1Ps_YiPbHAv_AsnUhWtGoXR-mhDGg"

Response

Simulated Response

Response Fields

Name Description
fences (object) the newly updated fence attributes

Status

200

Headers

ETag: W/"6194cb904d5c686a7e4a204a2e8b1539"

Body

{
  "fences": {
    "id": "1836",
    "name": "My Renamed Geofence",
    "latitude": "83.4716841257",
    "longitude": "31.1809442611",
    "radius": 17401,
    "comment_on_entry": "In at 1 - Hilpertmouth",
    "comment_on_exit": "Left 1 - Hilpertmouth",
    "entry": true,
    "exit": true,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "created_at": 1758035487,
    "updated_at": 1758035487
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1752333087,
      "beacons": 1757171487,
      "desktop_presences": 1752073887,
      "favorites": 1751641887,
      "fences": 1758035487,
      "groups": 1753110687,
      "networks": 1752851487,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "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.

Endpoint

POST /api/v4/groups

Parameters

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

Request

Route

POST /api/v4/groups

Headers

Content-Type: application/json
Authorization: Bearer zLJV-j7V1GV7JhEGqnyY_8ZPr8p0Ns3bILiOwaJKoWs

Body

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

cURL

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

Response

Simulated Response

Response Fields

Name Description
groups (object) the newly created group attributes

Status

201

Headers

ETag: W/"d2a34b3f908db206fe0159980b46a553"

Body

{
  "groups": {
    "id": "10539",
    "name": "New Department"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1754838686,
      "beacons": 1750000286,
      "desktop_presences": 1751209886,
      "favorites": 1752765086,
      "fences": 1751901086,
      "groups": 1758035486,
      "networks": 1755443486,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "emergency": null
  }
}

Delete a group

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

Endpoint

DELETE /api/v4/groups/:id

Request

Route

DELETE /api/v4/groups/10535

Headers

Content-Type: application/json
Authorization: Bearer 7lRD_i2GfMS4UYmf6FyJw5FelAIDfGA9VaxHOp189e4

cURL

curl "https://www.simpleinout.com/api/v4/groups/10535" -d '' -X DELETE \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 7lRD_i2GfMS4UYmf6FyJw5FelAIDfGA9VaxHOp189e4"

Response

Simulated Response

Status

204

List all groups

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

Endpoint

GET /api/v4/groups

Parameters

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

Request

Route

GET /api/v4/groups

Headers

Content-Type: application/json
Authorization: Bearer KTRPpjAelk_96aJ0Cli9xRFR0VBC7TSYVI7usawq-_Q

cURL

curl -g "https://www.simpleinout.com/api/v4/groups" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer KTRPpjAelk_96aJ0Cli9xRFR0VBC7TSYVI7usawq-_Q"

Response

Simulated Response

Response Fields

Name Description
groups (array) an array of groups

Status

200

Headers

ETag: W/"74770dc894db40bf271e2ce4380c97a7"
Last-Modified: Tue, 16 Sep 2025 15:11:26 GMT

Body

{
  "groups": [
    {
      "id": "10537",
      "name": "Gottlieb-Fahey9"
    },
    {
      "id": "10538",
      "name": "Hettinger, Stroman and DuBuque10"
    }
  ],
  "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": 1751382686,
      "beacons": 1757776286,
      "desktop_presences": 1752678686,
      "favorites": 1752419486,
      "fences": 1751987486,
      "groups": 1758035486,
      "networks": 1755357086,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "emergency": null
  }
}

Update a group

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

Endpoint

PATCH /api/v4/groups/:id

Parameters

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

Request

Route

PATCH /api/v4/groups/10536

Headers

Content-Type: application/json
Authorization: Bearer sG_uAvfadNnk-g2S5IzlMH-jKuXybC6P6qtcEnppXys

Body

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

cURL

curl "https://www.simpleinout.com/api/v4/groups/10536" -d '{"group":{"name":"Renamed Department"}}' -X PATCH \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer sG_uAvfadNnk-g2S5IzlMH-jKuXybC6P6qtcEnppXys"

Response

Simulated Response

Response Fields

Name Description
groups (object) the newly updated group attributes

Status

200

Headers

ETag: W/"d9f2af5c574bc85a27d98f77c276c815"

Body

{
  "groups": {
    "id": "10536",
    "name": "Renamed Department"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1757949086,
      "beacons": 1751728286,
      "desktop_presences": 1752678686,
      "favorites": 1755011486,
      "fences": 1756912286,
      "groups": 1758035486,
      "networks": 1756912286,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "emergency": null
  }
}

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.

Endpoint

POST /api/v4/networks

Parameters

Name Description
network[name] required (string) the name of the network, no longer than 44 characters
network[ssid] required (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'

Request

Route

POST /api/v4/networks

Headers

Content-Type: application/json
Authorization: Bearer hI-1Ql1KLwdY09AU4oKfOWBqaYPzrnwIYKWWiFZn9Hc

Body

{
  "network": {
    "name": "My Office",
    "ssid": "Office WiFi Hotspot"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/networks" -d '{"network":{"name":"My Office","ssid":"Office WiFi Hotspot"}}' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer hI-1Ql1KLwdY09AU4oKfOWBqaYPzrnwIYKWWiFZn9Hc"

Response

Simulated Response

Response Fields

Name Description
networks (object) the newly created network attributes

Status

201

Headers

ETag: W/"0ae44a7902e40f88c19cbde3025ec008"

Body

{
  "networks": {
    "id": "1709",
    "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",
    "created_at": 1758035487,
    "updated_at": 1758035487
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1757257887,
      "beacons": 1750605087,
      "desktop_presences": 1756307487,
      "favorites": 1756134687,
      "fences": 1752419487,
      "groups": 1754147487,
      "networks": 1758035487,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "emergency": null
  }
}

Delete a network

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

Endpoint

DELETE /api/v4/networks/:id

Request

Route

DELETE /api/v4/networks/1706

Headers

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

cURL

curl "https://www.simpleinout.com/api/v4/networks/1706" -d '' -X DELETE \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer zA7zXr8Lv9IE7Q4qLHArNcl_AlOgF3sCIYYZR9lWp-4"

Response

Simulated Response

Status

204

List all networks

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

Endpoint

GET /api/v4/networks

Parameters

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

Request

Route

GET /api/v4/networks

Headers

Content-Type: application/json
Authorization: Bearer NdJBQ8iFitomAndLqNUK3_6sA6ys3q7SOghEp6CPCXk

cURL

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

Response

Simulated Response

Response Fields

Name Description
networks (array) an array of networks

Status

200

Headers

ETag: W/"155ae30e155f2234da11ad19de1d9f1b"
Last-Modified: Tue, 16 Sep 2025 15:11:27 GMT

Body

{
  "networks": [
    {
      "id": "1707",
      "name": "3 - Edgardoshire",
      "ssid": "iu0aka8yst9qqfrw1hocgqjsqpnlpvnv",
      "comment_on_entry": "In at 3 - Edgardoshire",
      "comment_on_exit": "Left 3 - Edgardoshire",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1758035487,
      "updated_at": 1758035487
    },
    {
      "id": "1708",
      "name": "4 - Reynoldston",
      "ssid": "p0j9h2704pgzx4jv0k025jxnoqtekchg",
      "comment_on_entry": "In at 4 - Reynoldston",
      "comment_on_exit": "Left 4 - Reynoldston",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1758035487,
      "updated_at": 1758035487
    }
  ],
  "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": 1752851487,
      "beacons": 1752333087,
      "desktop_presences": 1750345887,
      "favorites": 1751123487,
      "fences": 1749913887,
      "groups": 1750950687,
      "networks": 1758035487,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "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.

Endpoint

PATCH /api/v4/networks/:id

Parameters

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'

Request

Route

PATCH /api/v4/networks/1705

Headers

Content-Type: application/json
Authorization: Bearer eWX9rlJVDR3oPhfdFX5hEi6zJ7rsFsKcDVWmpCUkbAk

Body

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

cURL

curl "https://www.simpleinout.com/api/v4/networks/1705" -d '{"network":{"name":"My Renamed Office"}}' -X PATCH \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer eWX9rlJVDR3oPhfdFX5hEi6zJ7rsFsKcDVWmpCUkbAk"

Response

Simulated Response

Response Fields

Name Description
networks (object) the newly updated network attributes

Status

200

Headers

ETag: W/"d85c0769ba6787aab50e0fd5a42c4e65"

Body

{
  "networks": {
    "id": "1705",
    "name": "My Renamed Office",
    "ssid": "fw6vvpx0vcvhf49x7rel93wjgl3xe2gs",
    "comment_on_entry": "In at 1 - West Talisha",
    "comment_on_exit": "Left 1 - West Talisha",
    "entry": true,
    "exit": true,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "created_at": 1758035487,
    "updated_at": 1758035487
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1752333087,
      "beacons": 1755357087,
      "desktop_presences": 1750777887,
      "favorites": 1756912287,
      "fences": 1751037087,
      "groups": 1756393887,
      "networks": 1758035487,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "emergency": null
  }
}

Ok

Make sure things are Ok

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

Endpoint

GET /api/v4/ok

Parameters

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

Request

Route

GET /api/v4/ok

Headers

Content-Type: application/json
Authorization: Bearer Eitwee3ASIScmWAK5WoB8vDvOlCw4mkOqiW6ei91NKI

cURL

curl -g "https://www.simpleinout.com/api/v4/ok" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer Eitwee3ASIScmWAK5WoB8vDvOlCw4mkOqiW6ei91NKI"

Response

Simulated Response

Status

204

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.

Endpoint

POST /api/v4/roles

Parameters

Name Description
role[name] required (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. If a user is not allowed to update their own status, they can only update their status from a common device running FrontDesk or TimeClock.
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.

Request

Route

POST /api/v4/roles

Headers

Content-Type: application/json
Authorization: Bearer VzXxNIWYBpUHN2HEcsqWDjRKhAZ0xbtZihjE5G-zqVk

Body

{
  "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,
    "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,"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 "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer VzXxNIWYBpUHN2HEcsqWDjRKhAZ0xbtZihjE5G-zqVk"

Response

Simulated Response

Response Fields

Name Description
roles (object) the newly created role attributes

Status

201

Headers

ETag: W/"63e98ca0b727bbb26c70ea9e349d1e55"

Body

{
  "roles": {
    "id": "452660",
    "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,
    "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": 1758035488,
    "updated_at": 1758035488
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1753888288,
      "beacons": 1756221088,
      "desktop_presences": 1756307488,
      "favorites": 1753888288,
      "fences": 1753715488,
      "groups": 1751555488,
      "networks": 1751296288,
      "roles": 1758035488,
      "settings": 1758035488
    },
    "emergency": null
  }
}

Delete a role

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

Endpoint

DELETE /api/v4/roles/:id

Request

Route

DELETE /api/v4/roles/452650

Headers

Content-Type: application/json
Authorization: Bearer Xc4MU1LAFLTz9ATHXbn_ceANnfttCnm1_gYLeMpluZo

cURL

curl "https://www.simpleinout.com/api/v4/roles/452650" -d '' -X DELETE \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer Xc4MU1LAFLTz9ATHXbn_ceANnfttCnm1_gYLeMpluZo"

Response

Simulated Response

Status

204

List all roles

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

Endpoint

GET /api/v4/roles

Parameters

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

Request

Route

GET /api/v4/roles

Headers

Content-Type: application/json
Authorization: Bearer rFx77Zaws6TaRImpgWWBTAQNAW_O_qxgEf1d-ZF6vCI

cURL

curl -g "https://www.simpleinout.com/api/v4/roles" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer rFx77Zaws6TaRImpgWWBTAQNAW_O_qxgEf1d-ZF6vCI"

Response

Simulated Response

Response Fields

Name Description
roles (array) an array of roles

Status

200

Headers

ETag: W/"58e258d32e2f2ff2404794dd310ffcc4"
Last-Modified: Tue, 16 Sep 2025 15:11:28 GMT

Body

{
  "roles": [
    {
      "id": "452667",
      "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,
      "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": 1758035488,
      "updated_at": 1758035488
    },
    {
      "id": "452669",
      "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,
      "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": 1758035488,
      "updated_at": 1758035488
    },
    {
      "id": "452666",
      "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,
      "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": 1758035488,
      "updated_at": 1758035488
    },
    {
      "id": "452668",
      "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,
      "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": 1758035488,
      "updated_at": 1758035488
    }
  ],
  "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": 1752160288,
      "beacons": 1751123488,
      "desktop_presences": 1749568288,
      "favorites": 1753283488,
      "fences": 1752333088,
      "groups": 1751469088,
      "networks": 1754147488,
      "roles": 1758035488,
      "settings": 1758035488
    },
    "emergency": null
  }
}

Retrieve a role

Retrieve an existing role.

Endpoint

GET /api/v4/roles/:id

Request

Route

GET /api/v4/roles/452655

Headers

Content-Type: application/json
Authorization: Bearer 6a6bgg6d6WZ3fKUmZvJvQk8lYddZ5V-KXKpE6PX1k0U

cURL

curl -g "https://www.simpleinout.com/api/v4/roles/452655" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Sio-Version: 1.0.0" \
	-H "Authorization: Bearer 6a6bgg6d6WZ3fKUmZvJvQk8lYddZ5V-KXKpE6PX1k0U"

Response

Simulated Response

Response Fields

Name Description
roles (object) the role attributes

Status

200

Headers

ETag: W/"4d9afff28b2a0e732a25ec31d2fe33e6"
Last-Modified: Tue, 16 Sep 2025 15:11:27 GMT

Body

{
  "roles": {
    "id": "452655",
    "name": "Ankunding Inc",
    "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,
    "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": 1758035487,
    "updated_at": 1758035487
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1755616287,
      "beacons": 1753024287,
      "desktop_presences": 1758035487,
      "favorites": 1754061087,
      "fences": 1755097887,
      "groups": 1752160287,
      "networks": 1756307487,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "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.

Endpoint

PATCH /api/v4/roles/:id

Parameters

Name Description
role[name] required (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. If a user is not allowed to update their own status, they can only update their status from a common device running FrontDesk or TimeClock.
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.

Request

Route

PATCH /api/v4/roles/452665

Headers

Content-Type: application/json
Authorization: Bearer gMqjzaVYEd6gqvu_mqcef_CftrNq2yfIjzJHtXJeiIc

Body

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

cURL

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

Response

Simulated Response

Response Fields

Name Description
roles (object) the newly updated role attributes

Status

200

Headers

ETag: W/"251e1bdfc6c3b21efa37f188408031c8"

Body

{
  "roles": {
    "id": "452665",
    "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,
    "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": 1758035488,
    "updated_at": 1758035488
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1751296288,
      "beacons": 1758035488,
      "desktop_presences": 1750432288,
      "favorites": 1750864288,
      "fences": 1756653088,
      "groups": 1753715488,
      "networks": 1751382688,
      "roles": 1758035488,
      "settings": 1758035488
    },
    "emergency": null
  }
}

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.

Endpoint

GET /api/v4/statuses

Parameters

Name Description
page_size (integer) number of results to return per page, defaults to 25
page (integer) page number of results
created_at required (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'
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'

Request

Route

GET /api/v4/statuses?created_at=1757394000..1757653199

Headers

Content-Type: application/json
Authorization: Bearer AUQc6x2WlMauV6Faj-Htr-KlqpIk_O_JayQGTpwk018

Query Parameters

created_at=1757394000..1757653199

cURL

curl -g "https://www.simpleinout.com/api/v4/statuses?created_at=1757394000..1757653199" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer AUQc6x2WlMauV6Faj-Htr-KlqpIk_O_JayQGTpwk018"

Response

Simulated Response

Response Fields

Name Description
statuses (array) an array of matching statuses

Status

200

Headers

ETag: W/"5c842827d94c5a75996329af3767d1e0"
Last-Modified: Wed, 10 Sep 2025 14:00:00 GMT

Body

{
  "statuses": [
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "198673",
      "changed_by_user_id": null,
      "created_at": 1757401200
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": true,
      "user_id": "198673",
      "changed_by_user_id": null,
      "created_at": 1757415600
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "198673",
      "changed_by_user_id": null,
      "created_at": 1757419200
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "198673",
      "changed_by_user_id": null,
      "created_at": 1757437200
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": true,
      "user_id": "198673",
      "changed_by_user_id": null,
      "created_at": 1757487600
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": true,
      "user_id": "198673",
      "changed_by_user_id": null,
      "created_at": 1757509200
    },
    {
      "status": "out",
      "comment": "On Vacation",
      "automatic": false,
      "user_id": "198673",
      "changed_by_user_id": "198674",
      "created_at": 1757512800
    }
  ],
  "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=1757394000..1757653199",
      "last_href": "http://example.org/api/v4/statuses?created_at=1757394000..1757653199",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1751382687,
      "beacons": 1754925087,
      "desktop_presences": 1750518687,
      "favorites": 1752073887,
      "fences": 1754838687,
      "groups": 1752073887,
      "networks": 1753715487,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "emergency": null
  }
}

Users

Archive a user

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

Endpoint

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

Request

Route

POST /api/v4/users/198653/archive

Headers

Content-Type: application/json
Authorization: Bearer Bz7uiM77kRDaUiYyCuSxfHEAAAn3kbSBstXrcLSBFaw

cURL

curl "https://www.simpleinout.com/api/v4/users/198653/archive" -d '' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer Bz7uiM77kRDaUiYyCuSxfHEAAAn3kbSBstXrcLSBFaw"

Response

Simulated Response

Status

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.

Endpoint

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

Parameters

Name Description
future[status] required (string) must be 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
future[apply_at] required (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'

Request

Route

POST /api/v4/users/198612/futures

Headers

Content-Type: application/json
Authorization: Bearer FQAE-Bp627wPrJl6qDqvHrQ3LSw2JH_bt5YWbckvAbE

Body

{
  "future": {
    "status": "out",
    "apply_at": 1763308800,
    "comment": "On Vacation",
    "end_at": 1763568000
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/198612/futures" -d '{"future":{"status":"out","apply_at":1763308800,"comment":"On Vacation","end_at":1763568000}}' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer FQAE-Bp627wPrJl6qDqvHrQ3LSw2JH_bt5YWbckvAbE"

Response

Simulated Response

Response Fields

Name Description
futures (object) the newly created future object

Status

201

Headers

ETag: W/"fb9ce53efa327a011310fe04f0e1e62b"

Body

{
  "futures": {
    "id": "5751",
    "status": "out",
    "comment": "On Vacation",
    "completed": false,
    "apply_at": 1763308800,
    "end_at": 1763568000,
    "user_id": "198612",
    "changed_by_user_id": "198611"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1757689885,
      "beacons": 1753542685,
      "desktop_presences": 1755443485,
      "favorites": 1750950685,
      "fences": 1749568285,
      "groups": 1757257885,
      "networks": 1755875485,
      "roles": 1758035485,
      "settings": 1758035485
    },
    "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.

Endpoint

POST /api/v4/users/my/futures

Parameters

Name Description
future[status] required (string) must be 'in', 'remote', 'busy', 'break', 'out', 'sick', or 'vacation'
future[apply_at] required (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'

Request

Route

POST /api/v4/users/my/futures

Headers

Content-Type: application/json
Authorization: Bearer 9s2GPNl7EnIERbtYu8Hd1310YYsD8pPtMyY8i9ahjAk

Body

{
  "future": {
    "status": "out",
    "apply_at": 1763308800,
    "comment": "On Vacation",
    "end_at": 1763568000
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/my/futures" -d '{"future":{"status":"out","apply_at":1763308800,"comment":"On Vacation","end_at":1763568000}}' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 9s2GPNl7EnIERbtYu8Hd1310YYsD8pPtMyY8i9ahjAk"

Response

Simulated Response

Response Fields

Name Description
futures (object) the newly created future object

Status

201

Headers

ETag: W/"744be5c76ac98ef05444c845d648bca9"

Body

{
  "futures": {
    "id": "5752",
    "status": "out",
    "comment": "On Vacation",
    "completed": false,
    "apply_at": 1763308800,
    "end_at": 1763568000,
    "user_id": "198615",
    "changed_by_user_id": null
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1757862686,
      "beacons": 1750777886,
      "desktop_presences": 1756653086,
      "favorites": 1755443486,
      "fences": 1754061086,
      "groups": 1756653086,
      "networks": 1757689886,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "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.

Endpoint

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

Parameters

Name Description
status[status] required (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'

Request

Route

POST /api/v4/users/198608/statuses

Headers

Content-Type: application/json
Authorization: Bearer b3EtpKXmfSRUOfSHRykKPfEzDiN7Xudwm0QwjXFxKRI

Body

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

cURL

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

Response

Simulated Response

Response Fields

Name Description
statuses (object) the newly created status object

Status

201

Headers

ETag: W/"01d4dc5a29f5e14d0870bd379afb9616"

Body

{
  "statuses": {
    "status": "in",
    "comment": "In at HQ",
    "automatic": false,
    "user_id": "198608",
    "changed_by_user_id": "198607",
    "created_at": 1758035485
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1754493085,
      "beacons": 1750518685,
      "desktop_presences": 1754320285,
      "favorites": 1757085085,
      "fences": 1752073885,
      "groups": 1753024285,
      "networks": 1751814685,
      "roles": 1758035485,
      "settings": 1758035485
    },
    "emergency": null
  }
}

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.

Endpoint

POST /api/v4/users/my/statuses

Parameters

Name Description
status[status] required (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'

Request

Route

POST /api/v4/users/my/statuses

Headers

Content-Type: application/json
Authorization: Bearer 3cyI8W6v49FQlpFVDZELaADFOIXHwNKm6Id1Ji-87Og

Body

{
  "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 "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 3cyI8W6v49FQlpFVDZELaADFOIXHwNKm6Id1Ji-87Og"

Response

Simulated Response

Response Fields

Name Description
statuses (object) the newly created status object

Status

201

Headers

ETag: W/"5887a1b58f37ad0f5f223ed66a627b5c"

Body

{
  "statuses": {
    "status": "in",
    "comment": "In at HQ",
    "automatic": false,
    "user_id": "198643",
    "changed_by_user_id": null,
    "created_at": 1758035486
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1749568286,
      "beacons": 1750432286,
      "desktop_presences": 1750259486,
      "favorites": 1756566686,
      "fences": 1757344286,
      "groups": 1755443486,
      "networks": 1754493086,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "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.

Endpoint

POST /api/v4/users

Parameters

Name Description
user[email] required (string) new user's email address
user[name] required (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[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] required (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'

Request

Route

POST /api/v4/users

Headers

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

Body

{
  "user": {
    "email": "bojack@simplymadeapps.com",
    "name": "Bojack Horseman",
    "details": "Lead Actor",
    "lang": "en",
    "phones_attributes": [
      {
        "number": "348-318-5191 x7221"
      }
    ],
    "memberships_attributes": [
      {
        "group_id": 10529
      }
    ],
    "role_id": "452414"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users" -d '{"user":{"email":"bojack@simplymadeapps.com","name":"Bojack Horseman","details":"Lead Actor","lang":"en","phones_attributes":[{"number":"348-318-5191 x7221"}],"memberships_attributes":[{"group_id":10529}],"role_id":"452414"}}' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 8jMWUl2GscIR82Ud_mqr7wTdtE7R1VcNunvD6Atilm8"

Response

Simulated Response

Response Fields

Name Description
users (object) the newly created user object

Status

201

Headers

ETag: W/"c4dc0d4cf755da1051c1b83a010965f2"

Body

{
  "users": {
    "id": "198606",
    "name": "Bojack Horseman",
    "email": "bojack@simplymadeapps.com",
    "details": "Lead Actor",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "452414",
    "announcements_read_at": 0,
    "created_at": 1758035485,
    "updated_at": 1758035485,
    "cached_at": "1758035485.864111200"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1750173085,
      "beacons": 1752678685,
      "desktop_presences": 1750086685,
      "favorites": 1753369885,
      "fences": 1752592285,
      "groups": 1758035485,
      "networks": 1754838685,
      "roles": 1758035485,
      "settings": 1758035485
    },
    "emergency": null
  }
}

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.

Endpoint

POST /api/v4/users/my/favorites

Parameters

Name Description
favorites required (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'

Request

Route

POST /api/v4/users/my/favorites

Headers

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

Body

{
  "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 "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 3rnVKnP1WdVR9yltH4vGqbJn0QrbgQ6mq6Pb0EJLNqk"

Response

Simulated Response

Response Fields

Name Description
users (object) the newly updated user attributes

Status

200

Headers

ETag: W/"d1cc3a44293173a9c0088dad1919ec40"

Body

{
  "users": {
    "id": "198604",
    "name": "Sterling Archer",
    "email": "sterling@simplymadeapps.com",
    "details": "Ipsa impedit qui.",
    "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": "452412",
    "announcements_read_at": 0,
    "created_at": 1758035485,
    "updated_at": 1758035485,
    "cached_at": "1758035485.808319000"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1756221085,
      "beacons": 1754665885,
      "desktop_presences": 1750605085,
      "favorites": 1757344285,
      "fences": 1750864285,
      "groups": 1751728285,
      "networks": 1750432285,
      "roles": 1758035485,
      "settings": 1758035485
    },
    "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.

Endpoint

DELETE /api/v4/users/:id

Request

Route

DELETE /api/v4/users/198602

Headers

Content-Type: application/json
Authorization: Bearer ZxRc-ofhUF3wCejq1xu5KW9Xd0u_Ueaf1LmTIeUvsVk

cURL

curl "https://www.simpleinout.com/api/v4/users/198602" -d '' -X DELETE \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer ZxRc-ofhUF3wCejq1xu5KW9Xd0u_Ueaf1LmTIeUvsVk"

Response

Simulated Response

Status

204

Favorite a status for the current user

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

Endpoint

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

Parameters

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

Request

Route

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

Headers

Content-Type: application/json
Authorization: Bearer 0oFzeVvgiowFWj11QFo4PdrJDlTxFPeL4Kcc0kNp4ck

Body

{
  "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 "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 0oFzeVvgiowFWj11QFo4PdrJDlTxFPeL4Kcc0kNp4ck"

Response

Simulated Response

Status

204

Hide a status for the current user

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

Endpoint

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

Parameters

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

Request

Route

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

Headers

Content-Type: application/json
Authorization: Bearer 0UZz01IBSIdMBz6ZvkedAdFVWHpKoOQ_u7OCfpZuKNI

Body

{
  "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 "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 0UZz01IBSIdMBz6ZvkedAdFVWHpKoOQ_u7OCfpZuKNI"

Response

Simulated Response

Status

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.

Endpoint

GET /api/v4/users?archived=true

Request

Route

GET /api/v4/users?archived=true

Headers

Content-Type: application/json
Authorization: Bearer BjO_bRWxJVsWTW5EfUt2f2FW2JBpsdarpsN-LmjT058

Query Parameters

archived=true

cURL

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

Response

Simulated Response

Status

200

Headers

ETag: W/"6b70dc5f8793eeafc0e6d7a66a7dc0e4"
Last-Modified: Tue, 16 Sep 2025 15:11:26 GMT

Body

{
  "users": [
    {
      "id": "198651",
      "name": "Annika Schimmel",
      "email": null,
      "details": "Ullam dolorem omnis.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": null,
      "announcements_read_at": 0,
      "created_at": 1758035486,
      "updated_at": 1758035486,
      "cached_at": "1758035486.853921000"
    }
  ],
  "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": 1749568286,
      "beacons": 1756739486,
      "desktop_presences": 1757085086,
      "favorites": 1756912286,
      "fences": 1752160286,
      "groups": 1751728286,
      "networks": 1753024286,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "emergency": null,
    "trusted_cached_at": "1758035471.861733200"
  }
}

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.

Endpoint

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

Parameters

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'
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

Request

Route

GET /api/v4/users/198609/futures

Headers

Content-Type: application/json
Authorization: Bearer VA_yeWzgaI-q6Sgx5moU-WN3RwSWEoPrnakQ7-y4awA

cURL

curl -g "https://www.simpleinout.com/api/v4/users/198609/futures" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer VA_yeWzgaI-q6Sgx5moU-WN3RwSWEoPrnakQ7-y4awA"

Response

Simulated Response

Response Fields

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

Status

200

Headers

ETag: W/"8f80d3b1aa619ae7081322669dac071e"
Last-Modified: Tue, 16 Sep 2025 15:11:25 GMT

Body

{
  "futures": [
    {
      "id": "5749",
      "status": "out",
      "comment": "Offsite Meeting",
      "completed": false,
      "apply_at": 1758610800,
      "end_at": null,
      "user_id": "198609",
      "changed_by_user_id": null
    },
    {
      "id": "5750",
      "status": "out",
      "comment": "Gone Fishing",
      "completed": false,
      "apply_at": 1764072000,
      "end_at": 1764244800,
      "user_id": "198609",
      "changed_by_user_id": "198610"
    }
  ],
  "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/198609/futures?user_id=198609",
      "last_href": "http://example.org/api/v4/users/198609/futures?user_id=198609",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1754233885,
      "beacons": 1750345885,
      "desktop_presences": 1755961885,
      "favorites": 1757776285,
      "fences": 1757517085,
      "groups": 1750086685,
      "networks": 1751382685,
      "roles": 1758035485,
      "settings": 1758035485
    },
    "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.

Endpoint

GET /api/v4/users/my/futures

Parameters

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'
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

Request

Route

GET /api/v4/users/my/futures

Headers

Content-Type: application/json
Authorization: Bearer kDjheIvLC3wsEWpdfdLWl4VHW72Vm3v1GBoYHMQnz-I

cURL

curl -g "https://www.simpleinout.com/api/v4/users/my/futures" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer kDjheIvLC3wsEWpdfdLWl4VHW72Vm3v1GBoYHMQnz-I"

Response

Simulated Response

Response Fields

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

Status

200

Headers

ETag: W/"a52c32cb7ec9213b99ec191f0bc15a46"
Last-Modified: Tue, 16 Sep 2025 15:11:25 GMT

Body

{
  "futures": [
    {
      "id": "5747",
      "status": "out",
      "comment": "Offsite Meeting",
      "completed": false,
      "apply_at": 1758610800,
      "end_at": null,
      "user_id": "198597",
      "changed_by_user_id": null
    },
    {
      "id": "5748",
      "status": "out",
      "comment": "Gone Fishing",
      "completed": false,
      "apply_at": 1764072000,
      "end_at": 1764244800,
      "user_id": "198597",
      "changed_by_user_id": "198598"
    }
  ],
  "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=198597",
      "last_href": "http://example.org/api/v4/users/my/futures?user_id=198597",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1756825885,
      "beacons": 1752678685,
      "desktop_presences": 1750777885,
      "favorites": 1756998685,
      "fences": 1757257885,
      "groups": 1751469085,
      "networks": 1754320285,
      "roles": 1758035485,
      "settings": 1758035485
    },
    "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.

Endpoint

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

Parameters

Name Description
created_at required (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'
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

Request

Route

GET /api/v4/users/198629/statuses?created_at=1757394000..1757653199

Headers

Content-Type: application/json
Authorization: Bearer LFb6qW4IPocfJwXwZ31vy0Wn6l8CvTX4c6jpxEfaxAI

Query Parameters

created_at=1757394000..1757653199

cURL

curl -g "https://www.simpleinout.com/api/v4/users/198629/statuses?created_at=1757394000..1757653199" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer LFb6qW4IPocfJwXwZ31vy0Wn6l8CvTX4c6jpxEfaxAI"

Response

Simulated Response

Response Fields

Name Description
statuses (array) an array of matching statuses

Status

200

Headers

ETag: W/"3793576ba5d644cb6457ae5162494ae1"
Last-Modified: Wed, 10 Sep 2025 14:00:00 GMT

Body

{
  "statuses": [
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "198629",
      "changed_by_user_id": null,
      "created_at": 1757401200
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "198629",
      "changed_by_user_id": null,
      "created_at": 1757415600
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "198629",
      "changed_by_user_id": null,
      "created_at": 1757419200
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "198629",
      "changed_by_user_id": null,
      "created_at": 1757437200
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "198629",
      "changed_by_user_id": null,
      "created_at": 1757487600
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "198629",
      "changed_by_user_id": null,
      "created_at": 1757509200
    },
    {
      "status": "out",
      "comment": "Vacation",
      "automatic": false,
      "user_id": "198629",
      "changed_by_user_id": "198630",
      "created_at": 1757512800
    }
  ],
  "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/198629/statuses?created_at=1757394000..1757653199&user_id=198629",
      "last_href": "http://example.org/api/v4/users/198629/statuses?created_at=1757394000..1757653199&user_id=198629",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1754838686,
      "beacons": 1751728286,
      "desktop_presences": 1750086686,
      "favorites": 1757085086,
      "fences": 1755184286,
      "groups": 1751209886,
      "networks": 1755011486,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "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.

Endpoint

GET /api/v4/users/my/statuses

Parameters

Name Description
created_at required (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'
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

Request

Route

GET /api/v4/users/my/statuses?created_at=1757394000..1757653199

Headers

Content-Type: application/json
Authorization: Bearer 0NR1zaUecokpOKeCfiurqDoF7KdIjnri-MxcN2mYZlM

Query Parameters

created_at=1757394000..1757653199

cURL

curl -g "https://www.simpleinout.com/api/v4/users/my/statuses?created_at=1757394000..1757653199" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 0NR1zaUecokpOKeCfiurqDoF7KdIjnri-MxcN2mYZlM"

Response

Simulated Response

Response Fields

Name Description
statuses (array) an array of matching statuses

Status

200

Headers

ETag: W/"5a2d9b34806395b94eb4479cf6c272b7"
Last-Modified: Wed, 10 Sep 2025 14:00:00 GMT

Body

{
  "statuses": [
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "198641",
      "changed_by_user_id": null,
      "created_at": 1757401200
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "198641",
      "changed_by_user_id": null,
      "created_at": 1757415600
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "198641",
      "changed_by_user_id": null,
      "created_at": 1757419200
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "198641",
      "changed_by_user_id": null,
      "created_at": 1757437200
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "198641",
      "changed_by_user_id": null,
      "created_at": 1757487600
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "198641",
      "changed_by_user_id": null,
      "created_at": 1757509200
    },
    {
      "status": "out",
      "comment": "Vacation",
      "automatic": false,
      "user_id": "198641",
      "changed_by_user_id": "198642",
      "created_at": 1757512800
    }
  ],
  "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=1757394000..1757653199&user_id=198641",
      "last_href": "http://example.org/api/v4/users/my/statuses?created_at=1757394000..1757653199&user_id=198641",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "announcements": 1750086686,
      "beacons": 1750518686,
      "desktop_presences": 1757776286,
      "favorites": 1751901086,
      "fences": 1749913886,
      "groups": 1753974686,
      "networks": 1757171486,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "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.

Endpoint

GET /api/v4/users

Parameters

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
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
cached_at (integer/float) return users updated that have made a significant change since an epoch time, accurate to nanoseconds
sort (string) order of the return with optional '-' to denote descending, possibilities include: 'name', 'email', 'cached_at', 'status.status', 'status.created_at'
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'

Request

Route

GET /api/v4/users

Headers

Content-Type: application/json
Authorization: Bearer 0jjKooVauh_Pui6E3Qb7BCzMLZf4axXTH84VD3E-XLg

cURL

curl -g "https://www.simpleinout.com/api/v4/users" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 0jjKooVauh_Pui6E3Qb7BCzMLZf4axXTH84VD3E-XLg"

Response

Simulated Response

Response Fields

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

Status

200

Headers

ETag: W/"2fff885c704e58d3cd58a21de1fa9e32"
Last-Modified: Tue, 16 Sep 2025 15:11:26 GMT

Body

{
  "users": [
    {
      "id": "198616",
      "name": "Malory Archer",
      "email": "malory@simplymadeapps.com",
      "details": "Eos dolorum enim.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": "452438",
      "announcements_read_at": 0,
      "created_at": 1758035486,
      "updated_at": 1758035486,
      "cached_at": "1758035486.082463000"
    },
    {
      "id": "198617",
      "name": "Sterling Archer",
      "email": "sterling@simplymadeapps.com",
      "details": "Necessitatibus neque accusantium.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": "452440",
      "announcements_read_at": 0,
      "created_at": 1758035486,
      "updated_at": 1758035486,
      "cached_at": "1758035486.087749000"
    },
    {
      "id": "198618",
      "name": "Lana Kane",
      "email": "lana@simplymadeapps.com",
      "details": "Natus quo quia.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": "452440",
      "announcements_read_at": 0,
      "created_at": 1758035486,
      "updated_at": 1758035486,
      "cached_at": "1758035486.093995000"
    },
    {
      "id": "198619",
      "name": "Ray Gillette",
      "email": "ray@simplymadeapps.com",
      "details": "Magnam repellendus sequi.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": "452440",
      "announcements_read_at": 0,
      "created_at": 1758035486,
      "updated_at": 1758035486,
      "cached_at": "1758035486.099161100"
    }
  ],
  "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": 1752765086,
      "beacons": 1756393886,
      "desktop_presences": 1751209886,
      "favorites": 1755789086,
      "fences": 1755270686,
      "groups": 1755270686,
      "networks": 1757430686,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "emergency": null,
    "trusted_cached_at": "1758035471.106352000"
  }
}

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.

Endpoint

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

Parameters

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

Request

Route

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

Headers

Content-Type: application/json
Authorization: Bearer CUOOAj7O8rZg3yPL7CZyNWHzsYVHbnWBUVYN18kXmkU

cURL

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

Response

Simulated Response

Response Fields

Name Description
users (object) the newly updated user attributes

Status

204

Retrieve a user

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

Endpoint

GET /api/v4/users/:id

Parameters

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'

Request

Route

GET /api/v4/users/198622

Headers

Content-Type: application/json
Authorization: Bearer 3zraLiVXWGnQmkwS9_CHJIupWXK5d-2BrI0Dyj6xOr0

cURL

curl -g "https://www.simpleinout.com/api/v4/users/198622" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 3zraLiVXWGnQmkwS9_CHJIupWXK5d-2BrI0Dyj6xOr0"

Response

Simulated Response

Response Fields

Name Description
users (object) a user object

Status

200

Headers

ETag: W/"cdcc7331868b948d2ad81c47a0624acc"
Last-Modified: Tue, 16 Sep 2025 15:11:26 GMT

Body

{
  "users": {
    "id": "198622",
    "name": "Sterling Archer",
    "email": "sterling@simplymadeapps.com",
    "details": "Itaque molestias consequatur.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "452448",
    "announcements_read_at": 0,
    "created_at": 1758035486,
    "updated_at": 1758035486,
    "cached_at": "1758035486.172606000"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1755357086,
      "beacons": 1754925086,
      "desktop_presences": 1750173086,
      "favorites": 1750259486,
      "fences": 1755443486,
      "groups": 1754493086,
      "networks": 1756566686,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "emergency": null
  }
}

Retrieve the current user

Retrieve the current user who is authorized.

Endpoint

GET /api/v4/users/my

Parameters

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'

Request

Route

GET /api/v4/users/my

Headers

Content-Type: application/json
Authorization: Bearer YBLpwT1Uc-t34gFEPI-MC2GzTd9-lcubryH6nIkVahE

cURL

curl -g "https://www.simpleinout.com/api/v4/users/my" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer YBLpwT1Uc-t34gFEPI-MC2GzTd9-lcubryH6nIkVahE"

Response

Simulated Response

Response Fields

Name Description
users (object) a user object

Status

200

Headers

ETag: W/"ca738545373d57feba8777a709b19f15"
Last-Modified: Tue, 16 Sep 2025 15:11:26 GMT

Body

{
  "users": {
    "id": "198626",
    "name": "Sterling Archer",
    "email": "sterling@simplymadeapps.com",
    "details": "Minima autem laborum.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "452456",
    "announcements_read_at": 0,
    "created_at": 1758035486,
    "updated_at": 1758035486,
    "cached_at": "1758035486.234043800"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1756480286,
      "beacons": 1754665886,
      "desktop_presences": 1752765086,
      "favorites": 1756912286,
      "fences": 1752851486,
      "groups": 1752678686,
      "networks": 1750432286,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "emergency": null
  }
}

Unarchive a user

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

Endpoint

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

Parameters

Name Description
user[email] required (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] required (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'

Request

Route

POST /api/v4/users/198681/unarchive

Headers

Content-Type: application/json
Authorization: Bearer EE4j-ie73_wWm4p4ZB9faOvVvLXktUS8FDqcPUycO7g

Body

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

cURL

curl "https://www.simpleinout.com/api/v4/users/198681/unarchive" -d '{"user":{"email":"bojack@simplymadeapps.com","role_id":"452598"}}' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer EE4j-ie73_wWm4p4ZB9faOvVvLXktUS8FDqcPUycO7g"

Response

Simulated Response

Status

200

Headers

ETag: W/"e843825afefdb354163cb8af09e0d52a"

Body

{
  "users": {
    "id": "198681",
    "name": "Franklin Kunde",
    "email": "bojack@simplymadeapps.com",
    "details": "Architecto voluptatem odio.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "452598",
    "created_at": 1758035487,
    "updated_at": 1758035487,
    "cached_at": "1758035487.578319000"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1749913887,
      "beacons": 1754925087,
      "desktop_presences": 1753024287,
      "favorites": 1754320287,
      "fences": 1757257887,
      "groups": 1753715487,
      "networks": 1757171487,
      "roles": 1758035487,
      "settings": 1758035487
    },
    "emergency": null
  }
}

Unfavorite a status for the current user

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

Endpoint

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

Parameters

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

Request

Route

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

Headers

Content-Type: application/json
Authorization: Bearer UpoILBoKhA_1NVGDHdfzdZ2FVWGKkhU0aZZUMWpuOEg

Body

{
  "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 "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer UpoILBoKhA_1NVGDHdfzdZ2FVWGKkhU0aZZUMWpuOEg"

Response

Simulated Response

Status

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.

Endpoint

PATCH /api/v4/users/:id

Parameters

Name Description
user[email] (string) new user's email address
user[name] (string) new user's full name
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'

Request

Route

PATCH /api/v4/users/198637

Headers

Content-Type: application/json
Authorization: Bearer ofuVuXhP_vSmjGm_5uZ7ysHreXq609uha9PWPOxwM3A

Body

{
  "user": {
    "phones_attributes": [
      {
        "number": "1-292-920-6671 x4520"
      }
    ],
    "memberships_attributes": [
      {
        "group_id": 10533
      }
    ]
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/198637" -d '{"user":{"phones_attributes":[{"number":"1-292-920-6671 x4520"}],"memberships_attributes":[{"group_id":10533}]}}' -X PATCH \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer ofuVuXhP_vSmjGm_5uZ7ysHreXq609uha9PWPOxwM3A"

Response

Simulated Response

Response Fields

Name Description
users (object) the newly updated user attributes

Status

200

Headers

ETag: W/"d31bf8d4be82df75103e03e0be79cb70"

Body

{
  "users": {
    "id": "198637",
    "name": "Sterling Archer",
    "email": "sterling@simplymadeapps.com",
    "details": "Dolores incidunt rerum.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "452480",
    "announcements_read_at": 0,
    "created_at": 1758035486,
    "updated_at": 1758035486,
    "cached_at": "1758035486.476481000"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1751987486,
      "beacons": 1753629086,
      "desktop_presences": 1753024286,
      "favorites": 1756825886,
      "fences": 1751123486,
      "groups": 1758035486,
      "networks": 1754233886,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "emergency": null
  }
}

Update the current user

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

Endpoint

PATCH /api/v4/users/my

Parameters

Name Description
user[email] (string) new user's email address
user[name] (string) new user's full name
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'

Request

Route

PATCH /api/v4/users/my

Headers

Content-Type: application/json
Authorization: Bearer o9BvYw0hUxP6JAls4r1mPdoG2GMllF_8ossPoOU6XqE

Body

{
  "user": {
    "phones_attributes": [
      {
        "number": "1-952-805-5868"
      }
    ],
    "memberships_attributes": [
      {
        "group_id": 10530
      }
    ]
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/my" -d '{"user":{"phones_attributes":[{"number":"1-952-805-5868"}],"memberships_attributes":[{"group_id":10530}]}}' -X PATCH \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer o9BvYw0hUxP6JAls4r1mPdoG2GMllF_8ossPoOU6XqE"

Response

Simulated Response

Response Fields

Name Description
users (object) the newly updated user attributes

Status

200

Headers

ETag: W/"aa21eb216eb847dfe3efbea4d266964d"

Body

{
  "users": {
    "id": "198620",
    "name": "Sang Mosciski Ret.",
    "email": "mallory@simplymadeapps.com",
    "details": "Assumenda iure maiores.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "452442",
    "announcements_read_at": 0,
    "created_at": 1758035486,
    "updated_at": 1758035486,
    "cached_at": "1758035486.145916000"
  },
  "meta": {
    "last_updated_at": {
      "announcements": 1751296286,
      "beacons": 1751728286,
      "desktop_presences": 1754493086,
      "favorites": 1755011486,
      "fences": 1753542686,
      "groups": 1758035486,
      "networks": 1751209886,
      "roles": 1758035486,
      "settings": 1758035486
    },
    "emergency": null
  }
}