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": {
    "beacons": 1435250484,
    "favorites": 1437151284,
    "fences": 1436546484,
    "groups": 1436287284,
    "networks": 1436287284,
    "settings": 1439916084
  }
}}

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,
      "tablet_access": false,
      "manage_company_and_users": 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": true,
      "manage_own_status": true,
      "view_badges": false,
      "view_others_archives": true,
      "view_others_futures": true,
      "view_others_reports": false,
      "view_status_updated_at": true,
      "view_users": true,
      "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": "[email protected]",
  "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"
    }
  }
}



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

Body

<html><body>You are being <a href="http://example.org/oauth/authorize?client_id=PLACE_YOUR_API_CLIENT_ID_HERE&amp;redirect_uri=https%3A%2F%2Fwww.simplymadeapps.com%2Fredirect%2Furl&amp;response_type=code&amp;scope=write&amp;user_confirmed=true&amp;locale=en">redirected</a>.</body></html>

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": "1TXaoaSRr2EVcKUnJ2Go5Cx_I_7sjCMk5JPLVrTcvsg",
  "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":"1TXaoaSRr2EVcKUnJ2Go5Cx_I_7sjCMk5JPLVrTcvsg","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/"5e2f48f1005af3f6ba9ccef234dfd6fb"

Body

{
  "access_token": "w9n7e2c6kQOeEEPjMnfdAVvK9tth6OUwLmHfalgoTKk",
  "token_type": "Bearer",
  "expires_in": 7200,
  "refresh_token": "9TGsFEcBEKQI5B8BJiFThij6JLL1S0vXb9Ff89Wxmxw",
  "scope": "write",
  "created_at": 1676296232,
  "user": {
    "id": "17299",
    "company_id": "9650",
    "roles": {
      "id": "43161",
      "name": "Administrator",
      "billing": true,
      "followed_users": true,
      "reminders": true,
      "safeties": true,
      "user_board": true,
      "manage_company_and_users": true,
      "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,
      "created_at": 1676296232,
      "updated_at": 1676296232
    }
  }
}

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": "02qs7kgdf38ral453nv8tino1fq9xw8l"
}

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":"02qs7kgdf38ral453nv8tino1fq9xw8l"}' -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/"c0df7efaeb13765d3604f65db1b85d54"

Body

{
  "access_token": "AmYn2w-foiH3U8WmUYpm0NHIv0_-gpC4g9F2L8OjZ9Y",
  "token_type": "Bearer",
  "expires_in": 604800,
  "refresh_token": "uaED926dg1eMnqtw1tqkgy0JwgY6yBs8SQ7548S6SrA",
  "scope": "write",
  "created_at": 1676296232,
  "user": {
    "id": "17298",
    "company_id": "9649",
    "roles": {
      "id": "43157",
      "name": "Administrator",
      "billing": true,
      "followed_users": true,
      "reminders": true,
      "safeties": true,
      "user_board": true,
      "manage_company_and_users": true,
      "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,
      "created_at": 1676296232,
      "updated_at": 1676296232
    }
  }
}

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": "0508996012088",
  "client_secret": "3491499661693",
  "token": "u26EOfXK6lQF539AL_guhuYNP7_dkZwi782j-Zxte5g"
}

cURL

curl "https://www.simpleinout.com/oauth/revoke" -d '{"client_id":"0508996012088","client_secret":"3491499661693","token":"u26EOfXK6lQF539AL_guhuYNP7_dkZwi782j-Zxte5g"}' -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 ZEmVxAA8wyAnJ459iMbDHHNwBxhI5Cdh_rjWlirm3vc

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 ZEmVxAA8wyAnJ459iMbDHHNwBxhI5Cdh_rjWlirm3vc"

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/"08468c6fca7155cd5d09312b540dcc0e"

Body

{
  "resource_owner_id": 17296,
  "scope": [
    "read"
  ],
  "expires_in": 604800,
  "application": {
    "uid": "8108559248729"
  },
  "created_at": 1676296232
}

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', 'out', or 'off', defaults to 'in'
beacon[status_on_exit] (string) the status to apply on exit: 'in', 'out', or 'off', defaults to 'out'

Request

Route

POST /api/v4/beacons

Headers

Content-Type: application/json
Authorization: Bearer tUEhZk9UnPVDkcjzKKjmuuSYJ9TeRoT0ziFdxm_u4nQ

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 tUEhZk9UnPVDkcjzKKjmuuSYJ9TeRoT0ziFdxm_u4nQ"

Response

Simulated Response

Response Fields

Name Description
beacons (object) the newly created beacon attributes

Status

201

Headers

ETag: W/"6328dbf5b254e1d0e9549921d1907018"

Body

{
  "beacons": {
    "id": "531",
    "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": 1676296239,
    "updated_at": 1676296239
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1676296239,
      "desktop_presences": 1669211438,
      "favorites": 1670334638,
      "fences": 1668779438,
      "groups": 1676296238,
      "networks": 1668693038,
      "roles": 1676296239,
      "settings": 1676296239
    }
  }
}

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/534

Headers

Content-Type: application/json
Authorization: Bearer JX3ba1RuA2sdaL0FQ_t9kSa7IqolibOve1yKz-Tv9NY

cURL

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

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 x4NO1x9yKJe9TZbe5BFJcFT1jrrnC0UjmP0KBkF34ec

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 x4NO1x9yKJe9TZbe5BFJcFT1jrrnC0UjmP0KBkF34ec"

Response

Simulated Response

Response Fields

Name Description
beacons (array) an array of beacons

Status

200

Headers

ETag: W/"69b43329c525c0857615b3a7c8a00078"
Last-Modified: Mon, 13 Feb 2023 13:50:39 GMT

Body

{
  "beacons": [
    {
      "id": "532",
      "name": "Rice Group",
      "uuid": "2436A9D4-7696-4B55-ACE3-1498C73EF9AF",
      "comment_on_entry": "In at Rice Group",
      "comment_on_exit": "Left Rice Group",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1676296239,
      "updated_at": 1676296239
    },
    {
      "id": "533",
      "name": "Ullrich, Franecki and Simonis",
      "uuid": "1E390E3F-F533-4191-8FF5-511E5DEA1EEE",
      "comment_on_entry": "In at Ullrich, Franecki and Simonis",
      "comment_on_exit": "Left Ullrich, Franecki and Simonis",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1676296239,
      "updated_at": 1676296239
    }
  ],
  "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": {
      "beacons": 1676296239,
      "desktop_presences": 1674568239,
      "favorites": 1668001839,
      "fences": 1670680239,
      "groups": 1669643439,
      "networks": 1669297839,
      "roles": 1676296239,
      "settings": 1676296239
    }
  }
}

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', 'out', or 'off', defaults to 'in'
beacon[status_on_exit] (string) the status to apply on exit: 'in', 'out', or 'off', defaults to 'out'

Request

Route

PATCH /api/v4/beacons/530

Headers

Content-Type: application/json
Authorization: Bearer m7Gndb7htvAN9xRgn1Ci44cI35hgfPuUBWw_CmjD2ow

Body

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

cURL

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

Response

Simulated Response

Response Fields

Name Description
beacons (object) the newly updated beacon attributes

Status

200

Headers

ETag: W/"60c52e893b698c560ebfa3fc76fa6f88"

Body

{
  "beacons": {
    "id": "530",
    "name": "My Renamed Office",
    "uuid": "FDBCF194-3EA7-4EA2-BCCD-6D3DB8167460",
    "comment_on_entry": "In at Oberbrunner-Wilkinson",
    "comment_on_exit": "Left Oberbrunner-Wilkinson",
    "entry": true,
    "exit": true,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "created_at": 1676296238,
    "updated_at": 1676296238
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1676296238,
      "desktop_presences": 1673445038,
      "favorites": 1676123438,
      "fences": 1671025838,
      "groups": 1669297838,
      "networks": 1671976238,
      "roles": 1676296238,
      "settings": 1676296238
    }
  }
}

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 QeUU2d5tAi3HC6c9ms907cmljvrCHrA1-T8i_qCxUwI

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 QeUU2d5tAi3HC6c9ms907cmljvrCHrA1-T8i_qCxUwI"

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

Status

200

Headers

ETag: W/"4d3192ff88638b29dcfdd2cec9905a4b"
Last-Modified: Mon, 13 Feb 2023 13:50:33 GMT

Body

{
  "companies": {
    "id": "9662",
    "name": "Moen-Blick",
    "scheduled_statuses": true,
    "default_role_id": "43211",
    "logo_url": null,
    "created_at": 1676296233
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1672494633,
      "desktop_presences": 1673272233,
      "favorites": 1670334633,
      "fences": 1672062633,
      "groups": 1669816233,
      "networks": 1673099433,
      "roles": 1676296233,
      "settings": 1676296233
    }
  }
}

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/491

Headers

Content-Type: application/json
Authorization: Bearer WzKNBpcb7_9rC7lKfHrHfQxYVt1OGamrowEW1gbYOkc

cURL

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

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, either 'in' or 'out'
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 sYDJILWVdKcFHIrZr1TaNxKkU5LC84emG-HeddXwrOQ

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 sYDJILWVdKcFHIrZr1TaNxKkU5LC84emG-HeddXwrOQ"

Response

Simulated Response

Response Fields

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

Status

200

Headers

ETag: W/"2889e28935ca22602940d6acb47ee4d5"
Last-Modified: Mon, 13 Feb 2023 13:50:39 GMT

Body

{
  "futures": [
    {
      "id": "489",
      "status": "out",
      "comment": "On Vacation, back Monday",
      "apply_at": 1678708800,
      "user_id": "17435",
      "changed_by_user_id": null
    },
    {
      "id": "490",
      "status": "out",
      "comment": "At the conference this week",
      "apply_at": 1691928000,
      "user_id": "17435",
      "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": {
      "beacons": 1672408239,
      "desktop_presences": 1673185839,
      "favorites": 1668261039,
      "fences": 1669902639,
      "groups": 1671889839,
      "networks": 1675691439,
      "roles": 1676296239,
      "settings": 1676296239
    }
  }
}

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', 'out', or 'off', defaults to 'in'
fence[status_on_exit] (string) the status to apply on exit: 'in', 'out', or 'off', defaults to 'out'

Request

Route

POST /api/v4/fences

Headers

Content-Type: application/json
Authorization: Bearer uitL0f-KaX5XQxqm7fPPRNFeatW4hH1wUFxoQ5ugtyQ

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 uitL0f-KaX5XQxqm7fPPRNFeatW4hH1wUFxoQ5ugtyQ"

Response

Simulated Response

Response Fields

Name Description
fences (object) the newly created fence attributes

Status

201

Headers

ETag: W/"53cd42fba3d45faf7042d9e6f32fe93c"

Body

{
  "fences": {
    "id": "223",
    "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": 1676296238,
    "updated_at": 1676296238
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1676037038,
      "desktop_presences": 1671025838,
      "favorites": 1672840238,
      "fences": 1676296238,
      "groups": 1674913838,
      "networks": 1670593838,
      "roles": 1676296238,
      "settings": 1676296238
    }
  }
}

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/224

Headers

Content-Type: application/json
Authorization: Bearer dUsvpq1X6LO9G9cy4p_j7Y7YwXuwal2vMdHZJ-oDinQ

cURL

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

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 RnDxe4Mptu_A1PKTZqyrarPbJIYvwK93AkEBmNlbT-Q

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 RnDxe4Mptu_A1PKTZqyrarPbJIYvwK93AkEBmNlbT-Q"

Response

Simulated Response

Response Fields

Name Description
fences (array) an array of fences

Status

200

Headers

ETag: W/"03f03fc1a111e5d03e4456b408ebefeb"
Last-Modified: Mon, 13 Feb 2023 13:50:38 GMT

Body

{
  "fences": [
    {
      "id": "226",
      "name": "1jr28if1g05rahrnq170",
      "latitude": "-34.3476177946",
      "longitude": "-65.2111058011",
      "radius": 992,
      "comment_on_entry": "In at 1jr28if1g05rahrnq170",
      "comment_on_exit": "Left 1jr28if1g05rahrnq170",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1676296238,
      "updated_at": 1676296238
    },
    {
      "id": "227",
      "name": "s9ir5padwx21ftukz262",
      "latitude": "52.9610935437",
      "longitude": "170.9624617055",
      "radius": 305,
      "comment_on_entry": "In at s9ir5padwx21ftukz262",
      "comment_on_exit": "Left s9ir5padwx21ftukz262",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1676296238,
      "updated_at": 1676296238
    }
  ],
  "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": {
      "beacons": 1671198638,
      "desktop_presences": 1667829038,
      "favorites": 1675259438,
      "fences": 1676296238,
      "groups": 1673185838,
      "networks": 1673704238,
      "roles": 1676296238,
      "settings": 1676296238
    }
  }
}

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', 'out', or 'off', defaults to 'in'
fence[status_on_exit] (string) the status to apply on exit: 'in', 'out', or 'off', defaults to 'out'

Request

Route

PATCH /api/v4/fences/225

Headers

Content-Type: application/json
Authorization: Bearer Zr27RRaDud8zu9UT1brSkSfvsFwvzg5IwtD0Mn7-FRg

Body

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

cURL

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

Response

Simulated Response

Response Fields

Name Description
fences (object) the newly updated fence attributes

Status

200

Headers

ETag: W/"77e008b1eb67197af8b2d36c5679cf74"

Body

{
  "fences": {
    "id": "225",
    "name": "My Renamed Geofence",
    "latitude": "-11.1031741448",
    "longitude": "-168.1625058576",
    "radius": 13657,
    "comment_on_entry": "In at 82vo0y2a8je2sjqsdpmz",
    "comment_on_exit": "Left 82vo0y2a8je2sjqsdpmz",
    "entry": true,
    "exit": true,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "created_at": 1676296238,
    "updated_at": 1676296238
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1671717038,
      "desktop_presences": 1675518638,
      "favorites": 1671025838,
      "fences": 1676296238,
      "groups": 1670853038,
      "networks": 1672581038,
      "roles": 1676296238,
      "settings": 1676296238
    }
  }
}

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 vVZkhq8jyMq1ErNCJn2rs6C-0zcjrYpvKkzHDqFzPt4

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 vVZkhq8jyMq1ErNCJn2rs6C-0zcjrYpvKkzHDqFzPt4"

Response

Simulated Response

Response Fields

Name Description
groups (object) the newly created group attributes

Status

201

Headers

ETag: W/"62d3d3051ff28370af72919a2d20231b"

Body

{
  "groups": {
    "id": "649",
    "name": "New Department"
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1675173034,
      "desktop_presences": 1675605034,
      "favorites": 1672581034,
      "fences": 1673099434,
      "groups": 1676296234,
      "networks": 1672408234,
      "roles": 1676296234,
      "settings": 1676296234
    }
  }
}

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/648

Headers

Content-Type: application/json
Authorization: Bearer SSZV_PpgFfgntYBdmSmMTidijvZilJEcV-T49NlvpCE

cURL

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

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 YvWsqzkqcGATmKFS0U6gfbwQ6pg54EitMqjG1q96IL0

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 YvWsqzkqcGATmKFS0U6gfbwQ6pg54EitMqjG1q96IL0"

Response

Simulated Response

Response Fields

Name Description
groups (array) an array of groups

Status

200

Headers

ETag: W/"1941b4afd3b0873c693ab6d6b37a779b"
Last-Modified: Mon, 13 Feb 2023 13:50:34 GMT

Body

{
  "groups": [
    {
      "id": "650",
      "name": "Kutch, Lindgren and Bahringer"
    },
    {
      "id": "651",
      "name": "Beatty, Goyette and Yost"
    }
  ],
  "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": {
      "beacons": 1675173034,
      "desktop_presences": 1674309034,
      "favorites": 1669816234,
      "fences": 1674049834,
      "groups": 1676296234,
      "networks": 1675518634,
      "roles": 1676296234,
      "settings": 1676296234
    }
  }
}

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/647

Headers

Content-Type: application/json
Authorization: Bearer U33_N1tGEmXGY2Rvficx5VZq4c_x91PYI2LuoUCzi9U

Body

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

cURL

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

Response

Simulated Response

Response Fields

Name Description
groups (object) the newly updated group attributes

Status

200

Headers

ETag: W/"62fefcedb51d8f922935f800d514a605"

Body

{
  "groups": {
    "id": "647",
    "name": "Renamed Department"
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1676037033,
      "desktop_presences": 1673704233,
      "favorites": 1669470633,
      "fences": 1675518633,
      "groups": 1676296234,
      "networks": 1672926633,
      "roles": 1676296233,
      "settings": 1676296233
    }
  }
}

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', 'out', or 'off', defaults to 'in'
network[status_on_exit] (string) the status to apply on exit: 'in', 'out', or 'off', defaults to 'out'

Request

Route

POST /api/v4/networks

Headers

Content-Type: application/json
Authorization: Bearer dbcRkOn0CEjOGJcJBeKjlIoM8L-hbFLaHZlI_Tn1HFU

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 dbcRkOn0CEjOGJcJBeKjlIoM8L-hbFLaHZlI_Tn1HFU"

Response

Simulated Response

Response Fields

Name Description
networks (object) the newly created network attributes

Status

201

Headers

ETag: W/"bb3506fb1d488788e6c7f9a5da3922fb"

Body

{
  "networks": {
    "id": "206",
    "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": 1676296232,
    "updated_at": 1676296232
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1672667432,
      "desktop_presences": 1673877032,
      "favorites": 1672235432,
      "fences": 1671889832,
      "groups": 1672840232,
      "networks": 1676296232,
      "roles": 1676296232,
      "settings": 1676296232
    }
  }
}

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/207

Headers

Content-Type: application/json
Authorization: Bearer M8_xfm4yx-KPfcsYvWvawOOx_uKyI3X5ImLOUvxlT4s

cURL

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

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 mnWzg5Vd2tWk3FDAGpwAbOWmnUMHCdDAuUszXtJhkVI

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 mnWzg5Vd2tWk3FDAGpwAbOWmnUMHCdDAuUszXtJhkVI"

Response

Simulated Response

Response Fields

Name Description
networks (array) an array of networks

Status

200

Headers

ETag: W/"7f5309cc8757a199615b183038052682"
Last-Modified: Mon, 13 Feb 2023 13:50:32 GMT

Body

{
  "networks": [
    {
      "id": "204",
      "name": "Schneider, Will and Bogan",
      "ssid": "2yysx1lz8dt4ofd27ymggglrjoqdbzed",
      "comment_on_entry": "In at Schneider, Will and Bogan",
      "comment_on_exit": "Left Schneider, Will and Bogan",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1676296232,
      "updated_at": 1676296232
    },
    {
      "id": "205",
      "name": "Walker-Dicki",
      "ssid": "bg6fyb8hsb5os8fq6a14gvmfqa7iwhse",
      "comment_on_entry": "In at Walker-Dicki",
      "comment_on_exit": "Left Walker-Dicki",
      "entry": true,
      "exit": true,
      "status_on_entry": "in",
      "status_on_exit": "out",
      "created_at": 1676296232,
      "updated_at": 1676296232
    }
  ],
  "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": {
      "beacons": 1669038632,
      "desktop_presences": 1673272232,
      "favorites": 1675518632,
      "fences": 1673099432,
      "groups": 1671198632,
      "networks": 1676296232,
      "roles": 1676296232,
      "settings": 1676296232
    }
  }
}

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', 'out', or 'off', defaults to 'in'
network[status_on_exit] (string) the status to apply on exit: 'in', 'out', or 'off', defaults to 'out'

Request

Route

PATCH /api/v4/networks/203

Headers

Content-Type: application/json
Authorization: Bearer fo26LZb2c7hMIcDeaktqJHFh2ZhIwydYLXwChU_AQIk

Body

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

cURL

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

Response

Simulated Response

Response Fields

Name Description
networks (object) the newly updated network attributes

Status

200

Headers

ETag: W/"bce5004476b0e4e0f2e6b80ca6b9c364"

Body

{
  "networks": {
    "id": "203",
    "name": "My Renamed Office",
    "ssid": "nsz0gah0r4g04phufuwyldjrkwkc7ash",
    "comment_on_entry": "In at Howell LLC",
    "comment_on_exit": "Left Howell LLC",
    "entry": true,
    "exit": true,
    "status_on_entry": "in",
    "status_on_exit": "out",
    "created_at": 1676296232,
    "updated_at": 1676296232
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1670075432,
      "desktop_presences": 1671112232,
      "favorites": 1670853032,
      "fences": 1674309032,
      "groups": 1670939432,
      "networks": 1676296232,
      "roles": 1676296232,
      "settings": 1676296232
    }
  }
}

Ok

Make sure things are Ok

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

Endpoint

GET /api/v4/ok

Request

Route

GET /api/v4/ok

Headers

Content-Type: application/json
Authorization: Bearer W4Bt0EyGTL_VaYKqs8kH56oOBW3WxI3TvqYVMs5E86U

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 W4Bt0EyGTL_VaYKqs8kH56oOBW3WxI3TvqYVMs5E86U"

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 other users and their current status.
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 others by adding and deleting status updates.
role[manage_others_futures] (boolean) these users can schedule future status updates for other users.
role[manage_others_status] (boolean) these users can change the current status of other 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_others_archives] (boolean) these users can view the past status updates made by other users.
role[view_others_futures] (boolean) these users can view the scheduled status updates for other users.
role[view_others_reports] (boolean) these users can run reports on the status history of other users.
role[view_user_board_updated_at] (boolean) these users can view the time that status updates were made on the board.

Request

Route

POST /api/v4/roles

Headers

Content-Type: application/json
Authorization: Bearer DGBILaYveVZMlEnmB-QVJzmRYYmONddc-lTopiP7UMM

Body

{
  "role": {
    "name": "Billing Role",
    "billing": true,
    "followed_users": false,
    "reminders": false,
    "safeties": false,
    "user_board": 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_others_archives": false,
    "view_others_futures": false,
    "view_others_reports": false,
    "view_user_board_updated_at": 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_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_others_archives":false,"view_others_futures":false,"view_others_reports":false,"view_user_board_updated_at":false}}' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer DGBILaYveVZMlEnmB-QVJzmRYYmONddc-lTopiP7UMM"

Response

Simulated Response

Response Fields

Name Description
roles (object) the newly created role attributes

Status

201

Headers

ETag: W/"faa4cde7b034e8b9dbda7941271cb700"

Body

{
  "roles": {
    "id": "43332",
    "name": "Billing Role",
    "billing": true,
    "followed_users": false,
    "reminders": false,
    "safeties": false,
    "user_board": false,
    "manage_company_and_users": 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_others_archives": false,
    "view_others_futures": false,
    "view_others_reports": false,
    "view_user_board_updated_at": false,
    "created_at": 1676296236,
    "updated_at": 1676296236
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1672321836,
      "desktop_presences": 1668261036,
      "favorites": 1673790636,
      "fences": 1671630636,
      "groups": 1671717036,
      "networks": 1670507436,
      "roles": 1676296236,
      "settings": 1676296236
    }
  }
}

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/43322

Headers

Content-Type: application/json
Authorization: Bearer JHfWseFVQ1Ka6sOFqWsAugwoLFL2nkUa9t9oKN8K6c4

cURL

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

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 YC94q2LKSI065o9E8ngjbaWU-MXvdsfjOnRYnckKWY4

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 YC94q2LKSI065o9E8ngjbaWU-MXvdsfjOnRYnckKWY4"

Response

Simulated Response

Response Fields

Name Description
roles (array) an array of roles

Status

200

Headers

ETag: W/"db3568a023b9e4db011f2a1360e7495e"
Last-Modified: Mon, 13 Feb 2023 13:50:36 GMT

Body

{
  "roles": [
    {
      "id": "43310",
      "name": "Manager",
      "billing": false,
      "followed_users": false,
      "reminders": false,
      "safeties": false,
      "user_board": true,
      "manage_company_and_users": false,
      "manage_groups_and_memberships": 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_others_archives": true,
      "view_others_futures": true,
      "view_others_reports": true,
      "view_user_board_updated_at": true,
      "created_at": 1676296236,
      "updated_at": 1676296236
    },
    {
      "id": "43312",
      "name": "Limited User",
      "billing": false,
      "followed_users": false,
      "reminders": false,
      "safeties": false,
      "user_board": true,
      "manage_company_and_users": 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_others_archives": true,
      "view_others_futures": true,
      "view_others_reports": false,
      "view_user_board_updated_at": true,
      "created_at": 1676296236,
      "updated_at": 1676296236
    },
    {
      "id": "43309",
      "name": "Administrator",
      "billing": true,
      "followed_users": true,
      "reminders": true,
      "safeties": true,
      "user_board": true,
      "manage_company_and_users": true,
      "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,
      "created_at": 1676296236,
      "updated_at": 1676296236
    },
    {
      "id": "43311",
      "name": "Regular User",
      "billing": false,
      "followed_users": false,
      "reminders": false,
      "safeties": false,
      "user_board": true,
      "manage_company_and_users": 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": true,
      "manage_own_status": true,
      "view_others_archives": true,
      "view_others_futures": true,
      "view_others_reports": false,
      "view_user_board_updated_at": true,
      "created_at": 1676296236,
      "updated_at": 1676296236
    }
  ],
  "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": {
      "beacons": 1675173036,
      "desktop_presences": 1669297836,
      "favorites": 1673790636,
      "fences": 1673013036,
      "groups": 1671285036,
      "networks": 1672753836,
      "roles": 1676296236,
      "settings": 1676296236
    }
  }
}

Retrieve a role

Retrieve an existing role.

Endpoint

GET /api/v4/roles/:id

Request

Route

GET /api/v4/roles/43327

Headers

Content-Type: application/json
Authorization: Bearer h4luot02OeIQksHe37mt6zSEGQtkJFgmDLCcA4GAk54

cURL

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

Response

Simulated Response

Response Fields

Name Description
roles (object) the role attributes

Status

200

Headers

ETag: W/"c17bbedf3cc878d2571a4e4558a2f893"
Last-Modified: Mon, 13 Feb 2023 13:50:36 GMT

Body

{
  "roles": {
    "id": "43327",
    "name": "Zboncak-Dickens",
    "billing": false,
    "followed_users": false,
    "reminders": false,
    "safeties": false,
    "user_board": false,
    "manage_company_and_users": 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_others_archives": false,
    "view_others_futures": false,
    "view_others_reports": false,
    "view_user_board_updated_at": false,
    "created_at": 1676296236,
    "updated_at": 1676296236
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1675950636,
      "desktop_presences": 1667829036,
      "favorites": 1676209836,
      "fences": 1671457836,
      "groups": 1671803436,
      "networks": 1669729836,
      "roles": 1676296236,
      "settings": 1676296236
    },
    "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] (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 other users and their current status.
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 others by adding and deleting status updates.
role[manage_others_futures] (boolean) these users can schedule future status updates for other users.
role[manage_others_status] (boolean) these users can change the current status of other 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_others_archives] (boolean) these users can view the past status updates made by other users.
role[view_others_futures] (boolean) these users can view the scheduled status updates for other users.
role[view_others_reports] (boolean) these users can run reports on the status history of other users.
role[view_user_board_updated_at] (boolean) these users can view the time that status updates were made on the board.

Request

Route

PATCH /api/v4/roles/43317

Headers

Content-Type: application/json
Authorization: Bearer 9R8hfMDoq6R7HI-uLWA3D5ae-tcvRhg6C_57AJ3tFoA

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/43317" -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 9R8hfMDoq6R7HI-uLWA3D5ae-tcvRhg6C_57AJ3tFoA"

Response

Simulated Response

Response Fields

Name Description
roles (object) the newly updated role attributes

Status

200

Headers

ETag: W/"a3f53511e59aea708d4d88c4d111e65a"

Body

{
  "roles": {
    "id": "43317",
    "name": "My Renamed Role",
    "billing": false,
    "followed_users": false,
    "reminders": false,
    "safeties": false,
    "user_board": false,
    "manage_company_and_users": 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_others_archives": true,
    "view_others_futures": true,
    "view_others_reports": false,
    "view_user_board_updated_at": false,
    "created_at": 1676296236,
    "updated_at": 1676296236
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1671544236,
      "desktop_presences": 1675605036,
      "favorites": 1670421036,
      "fences": 1672753836,
      "groups": 1670421036,
      "networks": 1670248236,
      "roles": 1676296236,
      "settings": 1676296236
    }
  }
}

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, either 'in' or 'out'
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=1675663200..1675922399

Headers

Content-Type: application/json
Authorization: Bearer HVCPiwQqLgArXr1yaTcez4AVvx-CA_JTQjbNuDdED7s

Query Parameters

created_at=1675663200..1675922399

cURL

curl -g "https://www.simpleinout.com/api/v4/statuses?created_at=1675663200..1675922399" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer HVCPiwQqLgArXr1yaTcez4AVvx-CA_JTQjbNuDdED7s"

Response

Simulated Response

Response Fields

Name Description
statuses (array) an array of matching statuses

Status

200

Headers

ETag: W/"309d526b9accae5a88f4e68df42b279c"
Last-Modified: Tue, 07 Feb 2023 15:00:00 GMT

Body

{
  "statuses": [
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "17367",
      "changed_by_user_id": null,
      "created_at": 1675670400
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": true,
      "user_id": "17367",
      "changed_by_user_id": null,
      "created_at": 1675684800
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "17367",
      "changed_by_user_id": null,
      "created_at": 1675688400
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "17367",
      "changed_by_user_id": null,
      "created_at": 1675706400
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": true,
      "user_id": "17367",
      "changed_by_user_id": null,
      "created_at": 1675756800
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": true,
      "user_id": "17367",
      "changed_by_user_id": null,
      "created_at": 1675778400
    },
    {
      "status": "out",
      "comment": "On Vacation",
      "automatic": false,
      "user_id": "17367",
      "changed_by_user_id": "17368",
      "created_at": 1675782000
    }
  ],
  "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=1675663200..1675922399",
      "last_href": "http://example.org/api/v4/statuses?created_at=1675663200..1675922399",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "beacons": 1668520236,
      "desktop_presences": 1668779436,
      "favorites": 1671803436,
      "fences": 1672149036,
      "groups": 1674049836,
      "networks": 1669557036,
      "roles": 1676296236,
      "settings": 1676296236
    }
  }
}

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/17433/archive

Headers

Content-Type: application/json
Authorization: Bearer s_UpYlpUPjUbg9ce9zItPO0Djjp9rQwj4SOFOQAEvQw

cURL

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

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' or 'out'
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
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/17385/futures

Headers

Content-Type: application/json
Authorization: Bearer ecCUtyjFaM_BlcCS1gWD1yYh1UeE9B7m1T2Hov4IlfI

Body

{
  "future": {
    "status": "out",
    "apply_at": 1681387200,
    "comment": "On Vacation"
  }
}

cURL

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

Response

Simulated Response

Response Fields

Name Description
futures (object) the newly created future object

Status

201

Headers

ETag: W/"35a40425909ab04fafe537574229e621"

Body

{
  "futures": {
    "id": "485",
    "status": "out",
    "comment": "On Vacation",
    "apply_at": 1681387200,
    "user_id": "17385",
    "changed_by_user_id": "17384"
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1674741037,
      "desktop_presences": 1673272237,
      "favorites": 1669643437,
      "fences": 1672667437,
      "groups": 1671889837,
      "networks": 1672321837,
      "roles": 1676296237,
      "settings": 1676296237
    }
  }
}

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' or 'out'
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
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 ouMzHwAcB336kqrud7UDWCwghHJMJPZa00A1rad28uc

Body

{
  "future": {
    "status": "out",
    "apply_at": 1681387200,
    "comment": "On Vacation"
  }
}

cURL

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

Response

Simulated Response

Response Fields

Name Description
futures (object) the newly created future object

Status

201

Headers

ETag: W/"bf4980b23ec1318ce27427d31b3e81bc"

Body

{
  "futures": {
    "id": "486",
    "status": "out",
    "comment": "On Vacation",
    "apply_at": 1681387200,
    "user_id": "17388",
    "changed_by_user_id": null
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1672840237,
      "desktop_presences": 1673099437,
      "favorites": 1673790637,
      "fences": 1672753837,
      "groups": 1673013037,
      "networks": 1670593837,
      "roles": 1676296237,
      "settings": 1676296237
    }
  }
}

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' or 'out'
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/17413/statuses

Headers

Content-Type: application/json
Authorization: Bearer kooSGc_GGQS-m_a965eicaR_mjSZMKlWNE-O6_OJ9Ww

Body

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

cURL

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

Response

Simulated Response

Response Fields

Name Description
statuses (object) the newly created status object

Status

201

Headers

ETag: W/"ec2b5045108f29b88a7d7b66467550cc"

Body

{
  "statuses": {
    "status": "in",
    "comment": "In at HQ",
    "automatic": false,
    "user_id": "17413",
    "changed_by_user_id": "17412",
    "created_at": 1676296238
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1667742638,
      "desktop_presences": 1672408238,
      "favorites": 1674654638,
      "fences": 1676123438,
      "groups": 1667742638,
      "networks": 1670593838,
      "roles": 1676296238,
      "settings": 1676296238
    }
  }
}

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' or 'out'
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 rlPU-1LZGdDcsyP9461uDzu--ZunlqRgK5Wxh8adubY

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 rlPU-1LZGdDcsyP9461uDzu--ZunlqRgK5Wxh8adubY"

Response

Simulated Response

Response Fields

Name Description
statuses (object) the newly created status object

Status

201

Headers

ETag: W/"6a8c6451c50a61b50a0ce74e7d8c9bc8"

Body

{
  "statuses": {
    "status": "in",
    "comment": "In at HQ",
    "automatic": false,
    "user_id": "17406",
    "changed_by_user_id": null,
    "created_at": 1676296238
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1668693038,
      "desktop_presences": 1675173038,
      "favorites": 1670680238,
      "fences": 1669557038,
      "groups": 1672062638,
      "networks": 1673358638,
      "roles": 1676296238,
      "settings": 1676296238
    }
  }
}

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, 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', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Request

Route

POST /api/v4/users

Headers

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

Body

{
  "user": {
    "email": "[email protected]",
    "name": "Bojack Horseman",
    "details": "Lead Actor",
    "lang": "en",
    "phones_attributes": [
      {
        "number": "1-367-487-1388 x4529"
      }
    ],
    "memberships_attributes": [
      {
        "group_id": 654
      }
    ],
    "role_id": "43369"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users" -d '{"user":{"email":"[email protected]","name":"Bojack Horseman","details":"Lead Actor","lang":"en","phones_attributes":[{"number":"1-367-487-1388 x4529"}],"memberships_attributes":[{"group_id":654}],"role_id":"43369"}}' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer 3EAhEIZ2Ww7avHDFfaMNYXROaRk_9o6nYTEycLkDt9U"

Response

Simulated Response

Response Fields

Name Description
users (object) the newly created user object

Status

201

Headers

ETag: W/"a6dbcb6337fc43af9c4cfc523dc104af"

Body

{
  "users": {
    "id": "17383",
    "name": "Bojack Horseman",
    "email": "[email protected]",
    "details": "Lead Actor",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "43369",
    "created_at": 1676296237,
    "updated_at": 1676296237,
    "cached_at": "1676296237.260898000"
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1668693037,
      "desktop_presences": 1672581037,
      "favorites": 1675000237,
      "fences": 1670593837,
      "groups": 1676296237,
      "networks": 1670853037,
      "roles": 1676296237,
      "settings": 1676296237
    }
  }
}

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

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 K3YU9FDfn9S9qGEQr8_qewUKyvMEkrYBYMQ2gUjQnrg"

Response

Simulated Response

Response Fields

Name Description
users (object) the newly updated user attributes

Status

200

Headers

ETag: W/"3472ac13718bc6da9977691afe0d7737"

Body

{
  "users": {
    "id": "17401",
    "name": "Sterling Archer",
    "email": "[email protected]",
    "details": "Harum similique nesciunt.",
    "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": "43407",
    "created_at": 1676296237,
    "updated_at": 1676296237,
    "cached_at": "1676296237.910687000"
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1674222637,
      "desktop_presences": 1673531437,
      "favorites": 1672149037,
      "fences": 1670421037,
      "groups": 1676037037,
      "networks": 1667829037,
      "roles": 1676296237,
      "settings": 1676296237
    }
  }
}

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/17408

Headers

Content-Type: application/json
Authorization: Bearer TumOMsv1dlZPasuuFjxXlLPp5EumB9Kj7QfBWRg3dPk

cURL

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

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' or 'out'
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 ezBE_d78wWeMs9OaZeNBVSGYefBrDt_EbP3LHI12SBs

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 ezBE_d78wWeMs9OaZeNBVSGYefBrDt_EbP3LHI12SBs"

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' or 'out'
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 NOKllkLjuq5cesSwkML5bfzMm4OZERBeEfM6L2Si6BU

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 NOKllkLjuq5cesSwkML5bfzMm4OZERBeEfM6L2Si6BU"

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 vDJhnP2UP42vSheGk8e6bDT2KWBOuKMTR9ElGqqtTvI

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 vDJhnP2UP42vSheGk8e6bDT2KWBOuKMTR9ElGqqtTvI"

Response

Simulated Response

Status

200

Headers

ETag: W/"a2250f0425977cccb7849defb2f51911"
Last-Modified: Mon, 13 Feb 2023 13:50:39 GMT

Body

{
  "users": [
    {
      "id": "17431",
      "name": "Norine Frami",
      "email": null,
      "details": "Error necessitatibus officiis.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": null,
      "created_at": 1676296239,
      "updated_at": 1676296239,
      "cached_at": "1676296239.206645000"
    }
  ],
  "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": {
      "beacons": 1672321839,
      "desktop_presences": 1671198639,
      "favorites": 1672840239,
      "fences": 1672753839,
      "groups": 1675605039,
      "networks": 1667742639,
      "roles": 1676296239,
      "settings": 1676296239
    },
    "trusted_cached_at": "1676296224.234368000"
  }
}

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/17394/futures

Headers

Content-Type: application/json
Authorization: Bearer RxDWa6n8cuPLjRalmQ8hf9UjBl-L6N0xz7GKX8jxBXw

cURL

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

Response

Simulated Response

Response Fields

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

Status

200

Headers

ETag: W/"c1147cdb816599c1a874880f64ab5a09"
Last-Modified: Mon, 13 Feb 2023 13:50:37 GMT

Body

{
  "futures": [
    {
      "id": "487",
      "status": "out",
      "comment": "Offsite Meeting",
      "apply_at": 1676880000,
      "user_id": "17394",
      "changed_by_user_id": null
    },
    {
      "id": "488",
      "status": "out",
      "comment": "Gone Fishing",
      "apply_at": 1682334000,
      "user_id": "17394",
      "changed_by_user_id": "17395"
    }
  ],
  "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/17394/futures?user_id=17394",
      "last_href": "http://example.org/api/v4/users/17394/futures?user_id=17394",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "beacons": 1668347437,
      "desktop_presences": 1673617837,
      "favorites": 1675605037,
      "fences": 1669297837,
      "groups": 1668952237,
      "networks": 1670334637,
      "roles": 1676296237,
      "settings": 1676296237
    }
  }
}

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 KyQCNyo4G_YqtpCdjrGcn1UJ2ZlVMLxeKjx3NIQcld8

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 KyQCNyo4G_YqtpCdjrGcn1UJ2ZlVMLxeKjx3NIQcld8"

Response

Simulated Response

Response Fields

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

Status

200

Headers

ETag: W/"6cbbb57eeeefd0a7050d14c7c567b2f7"
Last-Modified: Mon, 13 Feb 2023 13:50:37 GMT

Body

{
  "futures": [
    {
      "id": "483",
      "status": "out",
      "comment": "Offsite Meeting",
      "apply_at": 1676880000,
      "user_id": "17379",
      "changed_by_user_id": null
    },
    {
      "id": "484",
      "status": "out",
      "comment": "Gone Fishing",
      "apply_at": 1682334000,
      "user_id": "17379",
      "changed_by_user_id": "17380"
    }
  ],
  "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=17379",
      "last_href": "http://example.org/api/v4/users/my/futures?user_id=17379",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "beacons": 1671112237,
      "desktop_presences": 1669902637,
      "favorites": 1675864237,
      "fences": 1671198637,
      "groups": 1667915437,
      "networks": 1676296237,
      "roles": 1676296237,
      "settings": 1676296237
    }
  }
}

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/17404/statuses?created_at=1675663200..1675922399

Headers

Content-Type: application/json
Authorization: Bearer JnZZRQ_TlNKNkCp_DtYM-ZpEfSfO-rrp8YG9WqN5hy0

Query Parameters

created_at=1675663200..1675922399

cURL

curl -g "https://www.simpleinout.com/api/v4/users/17404/statuses?created_at=1675663200..1675922399" -X GET \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer JnZZRQ_TlNKNkCp_DtYM-ZpEfSfO-rrp8YG9WqN5hy0"

Response

Simulated Response

Response Fields

Name Description
statuses (array) an array of matching statuses

Status

200

Headers

ETag: W/"4403f2ad9dfd8b012315ce71ba6dacee"
Last-Modified: Tue, 07 Feb 2023 15:00:00 GMT

Body

{
  "statuses": [
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "17404",
      "changed_by_user_id": null,
      "created_at": 1675670400
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "17404",
      "changed_by_user_id": null,
      "created_at": 1675684800
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "17404",
      "changed_by_user_id": null,
      "created_at": 1675688400
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "17404",
      "changed_by_user_id": null,
      "created_at": 1675706400
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "17404",
      "changed_by_user_id": null,
      "created_at": 1675756800
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "17404",
      "changed_by_user_id": null,
      "created_at": 1675778400
    },
    {
      "status": "out",
      "comment": "Vacation",
      "automatic": false,
      "user_id": "17404",
      "changed_by_user_id": "17405",
      "created_at": 1675782000
    }
  ],
  "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/17404/statuses?created_at=1675663200..1675922399&user_id=17404",
      "last_href": "http://example.org/api/v4/users/17404/statuses?created_at=1675663200..1675922399&user_id=17404",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "beacons": 1668952237,
      "desktop_presences": 1668001837,
      "favorites": 1671371437,
      "fences": 1668865837,
      "groups": 1669729837,
      "networks": 1668347437,
      "roles": 1676296237,
      "settings": 1676296237
    }
  }
}

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=1675663200..1675922399

Headers

Content-Type: application/json
Authorization: Bearer I94d5CV9GCKgvwW7ZE8czin3lx4Ilz3tTVxEpPGlNqs

Query Parameters

created_at=1675663200..1675922399

cURL

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

Response

Simulated Response

Response Fields

Name Description
statuses (array) an array of matching statuses

Status

200

Headers

ETag: W/"59bf5c33c6cb3c54984cdd0222b9c36c"
Last-Modified: Tue, 07 Feb 2023 15:00:00 GMT

Body

{
  "statuses": [
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "17392",
      "changed_by_user_id": null,
      "created_at": 1675670400
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "17392",
      "changed_by_user_id": null,
      "created_at": 1675684800
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "17392",
      "changed_by_user_id": null,
      "created_at": 1675688400
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "17392",
      "changed_by_user_id": null,
      "created_at": 1675706400
    },
    {
      "status": "in",
      "comment": "At Work",
      "automatic": false,
      "user_id": "17392",
      "changed_by_user_id": null,
      "created_at": 1675756800
    },
    {
      "status": "out",
      "comment": "Left Work",
      "automatic": false,
      "user_id": "17392",
      "changed_by_user_id": null,
      "created_at": 1675778400
    },
    {
      "status": "out",
      "comment": "Vacation",
      "automatic": false,
      "user_id": "17392",
      "changed_by_user_id": "17393",
      "created_at": 1675782000
    }
  ],
  "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=1675663200..1675922399&user_id=17392",
      "last_href": "http://example.org/api/v4/users/my/statuses?created_at=1675663200..1675922399&user_id=17392",
      "previous_href": null,
      "next_href": null
    },
    "last_updated_at": {
      "beacons": 1674913837,
      "desktop_presences": 1674913837,
      "favorites": 1675518637,
      "fences": 1669816237,
      "groups": 1671112237,
      "networks": 1671630637,
      "roles": 1676296237,
      "settings": 1676296237
    }
  }
}

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', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Request

Route

GET /api/v4/users

Headers

Content-Type: application/json
Authorization: Bearer hfgMUzBM2uIIvYG7LYqFdzS9ikOSxE4fipag6dLRD8w

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 hfgMUzBM2uIIvYG7LYqFdzS9ikOSxE4fipag6dLRD8w"

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/"7a79176992674374ff99407e5ecb60f3"
Last-Modified: Mon, 13 Feb 2023 13:50:38 GMT

Body

{
  "users": [
    {
      "id": "17416",
      "name": "Malory Archer",
      "email": "[email protected]",
      "details": "Voluptatum perferendis commodi.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": "43441",
      "created_at": 1676296238,
      "updated_at": 1676296238,
      "cached_at": "1676296238.569893100"
    },
    {
      "id": "17417",
      "name": "Sterling Archer",
      "email": "[email protected]",
      "details": "Cupiditate vitae possimus.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": "43443",
      "created_at": 1676296238,
      "updated_at": 1676296238,
      "cached_at": "1676296238.577315000"
    },
    {
      "id": "17418",
      "name": "Lana Kane",
      "email": "[email protected]",
      "details": "Impedit tempora ea.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": "43443",
      "created_at": 1676296238,
      "updated_at": 1676296238,
      "cached_at": "1676296238.586925000"
    },
    {
      "id": "17419",
      "name": "Ray Gillette",
      "email": "[email protected]",
      "details": "Ut inventore facere.",
      "lang": "en",
      "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
      "role_id": "43443",
      "created_at": 1676296238,
      "updated_at": 1676296238,
      "cached_at": "1676296238.594053000"
    }
  ],
  "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": {
      "beacons": 1676123438,
      "desktop_presences": 1672926638,
      "favorites": 1668261038,
      "fences": 1669470638,
      "groups": 1670161838,
      "networks": 1670680238,
      "roles": 1676296238,
      "settings": 1676296238
    },
    "trusted_cached_at": "1676296223.621209100"
  }
}

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', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Request

Route

GET /api/v4/users/17411

Headers

Content-Type: application/json
Authorization: Bearer omzJ5phv74azcZNQhAZcADIGxZ4_uF3tx-G2FmlC1DA

cURL

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

Response

Simulated Response

Response Fields

Name Description
users (object) a user object

Status

200

Headers

ETag: W/"6ba9718db6024f01e0e4ffc14bf6287a"
Last-Modified: Mon, 13 Feb 2023 13:50:38 GMT

Body

{
  "users": {
    "id": "17411",
    "name": "Sterling Archer",
    "email": "[email protected]",
    "details": "Quia repellat tempore.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "43431",
    "created_at": 1676296238,
    "updated_at": 1676296238,
    "cached_at": "1676296238.389690900"
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1669125038,
      "desktop_presences": 1672926638,
      "favorites": 1672494638,
      "fences": 1668952238,
      "groups": 1674222638,
      "networks": 1670421038,
      "roles": 1676296238,
      "settings": 1676296238
    }
  }
}

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', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Request

Route

GET /api/v4/users/my

Headers

Content-Type: application/json
Authorization: Bearer N6ZM8jC8OFtVc9cQ-gEz-fgQst4r7hEsHXWEIFZ8vv4

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 N6ZM8jC8OFtVc9cQ-gEz-fgQst4r7hEsHXWEIFZ8vv4"

Response

Simulated Response

Response Fields

Name Description
users (object) a user object

Status

200

Headers

ETag: W/"d5477f1fa2ee406adaf7e8cee7fea305"
Last-Modified: Mon, 13 Feb 2023 13:50:36 GMT

Body

{
  "users": {
    "id": "17374",
    "name": "Sterling Archer",
    "email": "[email protected]",
    "details": "Quia eum quos.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "43351",
    "created_at": 1676296236,
    "updated_at": 1676296236,
    "cached_at": "1676296236.904583000"
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1669038636,
      "desktop_presences": 1671025836,
      "favorites": 1668001836,
      "fences": 1668520236,
      "groups": 1675777836,
      "networks": 1674049836,
      "roles": 1676296236,
      "settings": 1676296236
    }
  }
}

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, 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: 'memberships', 'memberships.group', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Request

Route

POST /api/v4/users/17304/unarchive

Headers

Content-Type: application/json
Authorization: Bearer SJmhSQydlJTh26AfrHd5zOAhzKza0A0RFWsUUqVTyfo

Body

{
  "user": {
    "email": "[email protected]",
    "role_id": "43173"
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/17304/unarchive" -d '{"user":{"email":"[email protected]","role_id":"43173"}}' -X POST \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer SJmhSQydlJTh26AfrHd5zOAhzKza0A0RFWsUUqVTyfo"

Response

Simulated Response

Status

200

Headers

ETag: W/"09a3b92fa59f801ed5ee30d16d7a2f54"

Body

{
  "users": {
    "id": "17304",
    "name": "Stephen Rau",
    "email": "[email protected]",
    "details": "Eum ducimus et.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "43173",
    "created_at": 1676296233,
    "updated_at": 1676296233,
    "cached_at": "1676296233.229985000"
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1672667433,
      "desktop_presences": 1669038633,
      "favorites": 1667829033,
      "fences": 1668433833,
      "groups": 1669470633,
      "networks": 1668952233,
      "roles": 1676296233,
      "settings": 1676296233
    }
  }
}

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' or 'out'
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 wt0LifbDGifbgBgodhbGvIX__YCtAIMgS-waSqWZ1Cs

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 wt0LifbDGifbgBgodhbGvIX__YCtAIMgS-waSqWZ1Cs"

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, 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', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Request

Route

PATCH /api/v4/users/17403

Headers

Content-Type: application/json
Authorization: Bearer CoCfYoIx7dJFWg_NpBvslWBsUFCE91CBlMXYgeiHH3c

Body

{
  "user": {
    "phones_attributes": [
      {
        "number": "1-102-550-7223 x363"
      }
    ],
    "memberships_attributes": [
      {
        "group_id": 656
      }
    ]
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/17403" -d '{"user":{"phones_attributes":[{"number":"1-102-550-7223 x363"}],"memberships_attributes":[{"group_id":656}]}}' -X PATCH \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer CoCfYoIx7dJFWg_NpBvslWBsUFCE91CBlMXYgeiHH3c"

Response

Simulated Response

Response Fields

Name Description
users (object) the newly updated user attributes

Status

200

Headers

ETag: W/"1a1033e1853ac2824a68cf1185a59396"

Body

{
  "users": {
    "id": "17403",
    "name": "Sterling Archer",
    "email": "[email protected]",
    "details": "Ut autem soluta.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "43411",
    "created_at": 1676296237,
    "updated_at": 1676296237,
    "cached_at": "1676296237.977711200"
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1672062637,
      "desktop_presences": 1672494637,
      "favorites": 1673704237,
      "fences": 1676209837,
      "groups": 1676296237,
      "networks": 1671025837,
      "roles": 1676296237,
      "settings": 1676296237
    }
  }
}

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, 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', 'phones', 'status', 'status.application', 'status.changed_by_user', 'recents', 'role'

Request

Route

PATCH /api/v4/users/my

Headers

Content-Type: application/json
Authorization: Bearer zAKANJxC2A4ZFGWxKmKqKxdJ63YCvqaONUq7_HNZauM

Body

{
  "user": {
    "phones_attributes": [
      {
        "number": "771.528.7050 x12933"
      }
    ],
    "memberships_attributes": [
      {
        "group_id": 653
      }
    ]
  }
}

cURL

curl "https://www.simpleinout.com/api/v4/users/my" -d '{"user":{"phones_attributes":[{"number":"771.528.7050 x12933"}],"memberships_attributes":[{"group_id":653}]}}' -X PATCH \
	-H "Version: HTTP/1.0" \
	-H "Content-Type: application/json" \
	-H "Authorization: Bearer zAKANJxC2A4ZFGWxKmKqKxdJ63YCvqaONUq7_HNZauM"

Response

Simulated Response

Response Fields

Name Description
users (object) the newly updated user attributes

Status

200

Headers

ETag: W/"ee47ba1a5f0d4255405d1526a14372c0"

Body

{
  "users": {
    "id": "17377",
    "name": "Kaylee Halvorson",
    "email": "[email protected]",
    "details": "Vel iusto veritatis.",
    "lang": "en",
    "image_url": "https://simpleinout.s3.amazonaws.com/image_none.png",
    "role_id": "43357",
    "created_at": 1676296237,
    "updated_at": 1676296237,
    "cached_at": "1676296237.052636900"
  },
  "meta": {
    "last_updated_at": {
      "beacons": 1674481836,
      "desktop_presences": 1673358636,
      "favorites": 1670075436,
      "fences": 1672062636,
      "groups": 1676296237,
      "networks": 1673099436,
      "roles": 1676296237,
      "settings": 1676296237
    }
  }
}