> For the complete documentation index, see [llms.txt](https://docs.shiftiq.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.shiftiq.com/developers/api-v2/navigating-the-api/accounts-api-users.md).

# Accounts API: Users

## GET /api/accounts/users-connections/{from}/{to}

> Retrieves one specific user connection

```json
{"openapi":"3.0.1","info":{"title":"Developer API","version":"v2.0.0"},"servers":[{"url":"/v2/e01"}],"security":[{"Bearer":[]},{"Cookie":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"-","name":"Bearer","in":"header"},"Cookie":{"type":"apiKey","description":"-","name":"InSite.WebToken","in":"cookie"}},"schemas":{"UserConnectionModel":{"type":"object","properties":{"FromUserId":{"type":"string","format":"uuid"},"ToUserId":{"type":"string","format":"uuid"},"IsLeader":{"type":"boolean"},"IsManager":{"type":"boolean"},"IsSupervisor":{"type":"boolean"},"IsValidator":{"type":"boolean"},"Connected":{"type":"string","format":"date-time"},"LastChangeTime":{"type":"string","format":"date-time"},"LastChangeType":{"type":"string","nullable":true},"LastChangeUser":{"type":"string","format":"uuid"}},"additionalProperties":false},"ProblemDetails":{"type":"object","properties":{"Type":{"type":"string","nullable":true},"Title":{"type":"string","nullable":true},"Status":{"type":"integer","format":"int32","nullable":true},"Detail":{"type":"string","nullable":true},"Instance":{"type":"string","nullable":true}},"additionalProperties":{}}}},"paths":{"/api/accounts/users-connections/{from}/{to}":{"get":{"tags":["Accounts API: Users"],"summary":"Retrieves one specific user connection","operationId":"retrieveUserConnection","parameters":[{"name":"fromUser","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"toUser","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"from","in":"path","required":true,"schema":{"type":"string"}},{"name":"to","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserConnectionModel"}},"text/json":{"schema":{"$ref":"#/components/schemas/UserConnectionModel"}}}},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProblemDetails"}},"text/json":{"schema":{"$ref":"#/components/schemas/ProblemDetails"}}}}}}}}}
```

## HEAD /api/accounts/users-connections/{from}/{to}

> Checks for the existence of one specific user connection

```json
{"openapi":"3.0.1","info":{"title":"Developer API","version":"v2.0.0"},"servers":[{"url":"/v2/e01"}],"security":[{"Bearer":[]},{"Cookie":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"-","name":"Bearer","in":"header"},"Cookie":{"type":"apiKey","description":"-","name":"InSite.WebToken","in":"cookie"}},"schemas":{"ProblemDetails":{"type":"object","properties":{"Type":{"type":"string","nullable":true},"Title":{"type":"string","nullable":true},"Status":{"type":"integer","format":"int32","nullable":true},"Detail":{"type":"string","nullable":true},"Instance":{"type":"string","nullable":true}},"additionalProperties":{}}}},"paths":{"/api/accounts/users-connections/{from}/{to}":{"head":{"tags":["Accounts API: Users"],"summary":"Checks for the existence of one specific user connection","operationId":"assertUserConnection","parameters":[{"name":"fromUser","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"toUser","in":"path","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"from","in":"path","required":true,"schema":{"type":"string"}},{"name":"to","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK"},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProblemDetails"}},"text/json":{"schema":{"$ref":"#/components/schemas/ProblemDetails"}}}}}}}}}
```

## Collects the list of user connections that match specific criteria

> Use LastChangeTimeSince and LastChangeTimeBefore to restrict the result set to user connections modified> \
> within a specific window. Both parameters accept ISO 8601 date-time values, for example> \
> "2026-07-06T14:00:00+00:00". LastChangeTimeSince is inclusive; LastChangeTimeBefore is exclusive.

```json
{"openapi":"3.0.1","info":{"title":"Developer API","version":"v2.0.0"},"servers":[{"url":"/v2/e01"}],"security":[{"Bearer":[]},{"Cookie":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"-","name":"Bearer","in":"header"},"Cookie":{"type":"apiKey","description":"-","name":"InSite.WebToken","in":"cookie"}},"schemas":{"CollectUserConnections":{"type":"object","properties":{"ConnectedSince":{"type":"string","format":"date-time","nullable":true},"ConnectedBefore":{"type":"string","format":"date-time","nullable":true},"LastChangeTimeSince":{"type":"string","format":"date-time","nullable":true},"LastChangeTimeBefore":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false},"UserConnectionModel":{"type":"object","properties":{"FromUserId":{"type":"string","format":"uuid"},"ToUserId":{"type":"string","format":"uuid"},"IsLeader":{"type":"boolean"},"IsManager":{"type":"boolean"},"IsSupervisor":{"type":"boolean"},"IsValidator":{"type":"boolean"},"Connected":{"type":"string","format":"date-time"},"LastChangeTime":{"type":"string","format":"date-time"},"LastChangeType":{"type":"string","nullable":true},"LastChangeUser":{"type":"string","format":"uuid"}},"additionalProperties":false}}},"paths":{"/api/accounts/users-connections/collect":{"post":{"tags":["Accounts API: Users"],"summary":"Collects the list of user connections that match specific criteria","description":"Use LastChangeTimeSince and LastChangeTimeBefore to restrict the result set to user connections modified\r\nwithin a specific window. Both parameters accept ISO 8601 date-time values, for example\r\n\"2026-07-06T14:00:00+00:00\". LastChangeTimeSince is inclusive; LastChangeTimeBefore is exclusive.","operationId":"collectUserConnections","requestBody":{"content":{"application/json-patch+json":{"schema":{"$ref":"#/components/schemas/CollectUserConnections"}},"application/json":{"schema":{"$ref":"#/components/schemas/CollectUserConnections"}},"text/json":{"schema":{"$ref":"#/components/schemas/CollectUserConnections"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/CollectUserConnections"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserConnectionModel"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserConnectionModel"}}}}}}}}}}
```

## Counts the user connections that match specific criteria

> Use LastChangeTimeSince and LastChangeTimeBefore to restrict the count to user connections modified> \
> within a specific window. Both parameters accept ISO 8601 date-time values, for example> \
> "2026-07-06T14:00:00+00:00". LastChangeTimeSince is inclusive; LastChangeTimeBefore is exclusive.

```json
{"openapi":"3.0.1","info":{"title":"Developer API","version":"v2.0.0"},"servers":[{"url":"/v2/e01"}],"security":[{"Bearer":[]},{"Cookie":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"-","name":"Bearer","in":"header"},"Cookie":{"type":"apiKey","description":"-","name":"InSite.WebToken","in":"cookie"}},"schemas":{"CountUserConnections":{"type":"object","properties":{"ConnectedSince":{"type":"string","format":"date-time","nullable":true},"ConnectedBefore":{"type":"string","format":"date-time","nullable":true},"LastChangeTimeSince":{"type":"string","format":"date-time","nullable":true},"LastChangeTimeBefore":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false},"CountResult":{"type":"object","properties":{"Count":{"type":"integer","format":"int32"},"Summary":{"type":"string","nullable":true}},"additionalProperties":false}}},"paths":{"/api/accounts/users-connections/count":{"post":{"tags":["Accounts API: Users"],"summary":"Counts the user connections that match specific criteria","description":"Use LastChangeTimeSince and LastChangeTimeBefore to restrict the count to user connections modified\r\nwithin a specific window. Both parameters accept ISO 8601 date-time values, for example\r\n\"2026-07-06T14:00:00+00:00\". LastChangeTimeSince is inclusive; LastChangeTimeBefore is exclusive.","operationId":"countUserConnections","requestBody":{"content":{"application/json-patch+json":{"schema":{"$ref":"#/components/schemas/CountUserConnections"}},"application/json":{"schema":{"$ref":"#/components/schemas/CountUserConnections"}},"text/json":{"schema":{"$ref":"#/components/schemas/CountUserConnections"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/CountUserConnections"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CountResult"}},"text/json":{"schema":{"$ref":"#/components/schemas/CountResult"}}}}}}}}}
```

## Downloads the list of user connections that match specific criteria

> Use LastChangeTimeSince and LastChangeTimeBefore to download only user connections modified within a> \
> specific window, which is useful for incremental integrations that already hold most of the data. Both> \
> parameters accept ISO 8601 date-time values, for example "2026-07-06T14:00:00+00:00". LastChangeTimeSince> \
> is inclusive; LastChangeTimeBefore is exclusive. When polling for deltas, subtract a small overlap (for> \
> example five minutes) from the previous poll time to allow for projection lag.

```json
{"openapi":"3.0.1","info":{"title":"Developer API","version":"v2.0.0"},"servers":[{"url":"/v2/e01"}],"security":[{"Bearer":[]},{"Cookie":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"-","name":"Bearer","in":"header"},"Cookie":{"type":"apiKey","description":"-","name":"InSite.WebToken","in":"cookie"}},"schemas":{"CollectUserConnections":{"type":"object","properties":{"ConnectedSince":{"type":"string","format":"date-time","nullable":true},"ConnectedBefore":{"type":"string","format":"date-time","nullable":true},"LastChangeTimeSince":{"type":"string","format":"date-time","nullable":true},"LastChangeTimeBefore":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false}}},"paths":{"/api/accounts/users-connections/download":{"post":{"tags":["Accounts API: Users"],"summary":"Downloads the list of user connections that match specific criteria","description":"Use LastChangeTimeSince and LastChangeTimeBefore to download only user connections modified within a\r\nspecific window, which is useful for incremental integrations that already hold most of the data. Both\r\nparameters accept ISO 8601 date-time values, for example \"2026-07-06T14:00:00+00:00\". LastChangeTimeSince\r\nis inclusive; LastChangeTimeBefore is exclusive. When polling for deltas, subtract a small overlap (for\r\nexample five minutes) from the previous poll time to allow for projection lag.","operationId":"downloadUserConnections","requestBody":{"content":{"application/json-patch+json":{"schema":{"$ref":"#/components/schemas/CollectUserConnections"}},"application/json":{"schema":{"$ref":"#/components/schemas/CollectUserConnections"}},"text/json":{"schema":{"$ref":"#/components/schemas/CollectUserConnections"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/CollectUserConnections"}}}},"responses":{"200":{"description":"OK"}}}}}}
```

## Searches for the list of user connections that match specific criteria

> Use LastChangeTimeSince and LastChangeTimeBefore to restrict the result set to user connections modified> \
> within a specific window. Both parameters accept ISO 8601 date-time values, for example> \
> "2026-07-06T14:00:00+00:00". LastChangeTimeSince is inclusive; LastChangeTimeBefore is exclusive.

```json
{"openapi":"3.0.1","info":{"title":"Developer API","version":"v2.0.0"},"servers":[{"url":"/v2/e01"}],"security":[{"Bearer":[]},{"Cookie":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"-","name":"Bearer","in":"header"},"Cookie":{"type":"apiKey","description":"-","name":"InSite.WebToken","in":"cookie"}},"schemas":{"SearchUserConnections":{"type":"object","properties":{"ConnectedSince":{"type":"string","format":"date-time","nullable":true},"ConnectedBefore":{"type":"string","format":"date-time","nullable":true},"LastChangeTimeSince":{"type":"string","format":"date-time","nullable":true},"LastChangeTimeBefore":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false},"UserConnectionMatch":{"type":"object","properties":{"FromUserId":{"type":"string","format":"uuid"},"ToUserId":{"type":"string","format":"uuid"}},"additionalProperties":false}}},"paths":{"/api/accounts/users-connections/search":{"post":{"tags":["Accounts API: Users"],"summary":"Searches for the list of user connections that match specific criteria","description":"Use LastChangeTimeSince and LastChangeTimeBefore to restrict the result set to user connections modified\r\nwithin a specific window. Both parameters accept ISO 8601 date-time values, for example\r\n\"2026-07-06T14:00:00+00:00\". LastChangeTimeSince is inclusive; LastChangeTimeBefore is exclusive.","operationId":"searchUserConnections","requestBody":{"content":{"application/json-patch+json":{"schema":{"$ref":"#/components/schemas/SearchUserConnections"}},"application/json":{"schema":{"$ref":"#/components/schemas/SearchUserConnections"}},"text/json":{"schema":{"$ref":"#/components/schemas/SearchUserConnections"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/SearchUserConnections"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserConnectionMatch"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserConnectionMatch"}}}}}}}}}}
```

## GET /api/accounts/users/{user}

> Retrieves one specific user

```json
{"openapi":"3.0.1","info":{"title":"Developer API","version":"v2.0.0"},"servers":[{"url":"/v2/e01"}],"security":[{"Bearer":[]},{"Cookie":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"-","name":"Bearer","in":"header"},"Cookie":{"type":"apiKey","description":"-","name":"InSite.WebToken","in":"cookie"}},"schemas":{"UserModel":{"type":"object","properties":{"UserId":{"type":"string","format":"uuid"},"AccessGrantedToCmds":{"type":"boolean"},"MultiFactorAuthentication":{"type":"boolean"},"DefaultPassword":{"type":"string","nullable":true},"Email":{"type":"string","nullable":true},"EmailAlternate":{"type":"string","nullable":true},"EmailVerified":{"type":"string","nullable":true},"FirstName":{"type":"string","nullable":true},"FullName":{"type":"string","nullable":true},"Honorific":{"type":"string","nullable":true},"ImageUrl":{"type":"string","nullable":true},"Initials":{"type":"string","nullable":true},"LastName":{"type":"string","nullable":true},"LoginOrganizationCode":{"type":"string","nullable":true},"MiddleName":{"type":"string","nullable":true},"MultiFactorAuthenticationCode":{"type":"string","nullable":true},"OAuthProviderUserId":{"type":"string","nullable":true},"OldUserPasswordHash":{"type":"string","nullable":true},"PhoneMobile":{"type":"string","nullable":true},"SoundexFirstName":{"type":"string","nullable":true},"SoundexLastName":{"type":"string","nullable":true},"TimeZone":{"type":"string","nullable":true},"UserPasswordHash":{"type":"string","nullable":true},"PrimaryLoginMethod":{"type":"integer","format":"int32","nullable":true},"SecondaryLoginMethod":{"type":"integer","format":"int32","nullable":true},"UserPasswordChangeRequested":{"type":"integer","format":"int32","nullable":true},"AccountCloaked":{"type":"string","format":"date-time","nullable":true},"DefaultPasswordExpired":{"type":"string","format":"date-time","nullable":true},"UserLicenseAccepted":{"type":"string","format":"date-time","nullable":true},"UserPasswordChanged":{"type":"string","format":"date-time","nullable":true},"UserPasswordExpired":{"type":"string","format":"date-time"},"UtcArchived":{"type":"string","format":"date-time","nullable":true},"UtcUnarchived":{"type":"string","format":"date-time","nullable":true},"LastChangeTime":{"type":"string","format":"date-time"},"LastChangeType":{"type":"string","nullable":true},"LastChangeUser":{"type":"string","format":"uuid"}},"additionalProperties":false},"ProblemDetails":{"type":"object","properties":{"Type":{"type":"string","nullable":true},"Title":{"type":"string","nullable":true},"Status":{"type":"integer","format":"int32","nullable":true},"Detail":{"type":"string","nullable":true},"Instance":{"type":"string","nullable":true}},"additionalProperties":{}}}},"paths":{"/api/accounts/users/{user}":{"get":{"tags":["Accounts API: Users"],"summary":"Retrieves one specific user","operationId":"retrieveUser","parameters":[{"name":"user","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserModel"}},"text/json":{"schema":{"$ref":"#/components/schemas/UserModel"}}}},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProblemDetails"}},"text/json":{"schema":{"$ref":"#/components/schemas/ProblemDetails"}}}}}}}}}
```

## HEAD /api/accounts/users/{user}

> Checks for the existence of one specific user

```json
{"openapi":"3.0.1","info":{"title":"Developer API","version":"v2.0.0"},"servers":[{"url":"/v2/e01"}],"security":[{"Bearer":[]},{"Cookie":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"-","name":"Bearer","in":"header"},"Cookie":{"type":"apiKey","description":"-","name":"InSite.WebToken","in":"cookie"}},"schemas":{"ProblemDetails":{"type":"object","properties":{"Type":{"type":"string","nullable":true},"Title":{"type":"string","nullable":true},"Status":{"type":"integer","format":"int32","nullable":true},"Detail":{"type":"string","nullable":true},"Instance":{"type":"string","nullable":true}},"additionalProperties":{}}}},"paths":{"/api/accounts/users/{user}":{"head":{"tags":["Accounts API: Users"],"summary":"Checks for the existence of one specific user","operationId":"assertUser","parameters":[{"name":"user","in":"path","required":true,"schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"OK"},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProblemDetails"}},"text/json":{"schema":{"$ref":"#/components/schemas/ProblemDetails"}}}}}}}}}
```

## Collects the list of users that match specific criteria

> Use LastChangeTimeSince and LastChangeTimeBefore to restrict the result set to users modified within a> \
> specific window. Both parameters accept ISO 8601 date-time values, for example "2026-07-06T14:00:00+00:00".> \
> LastChangeTimeSince is inclusive; LastChangeTimeBefore is exclusive.

```json
{"openapi":"3.0.1","info":{"title":"Developer API","version":"v2.0.0"},"servers":[{"url":"/v2/e01"}],"security":[{"Bearer":[]},{"Cookie":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"-","name":"Bearer","in":"header"},"Cookie":{"type":"apiKey","description":"-","name":"InSite.WebToken","in":"cookie"}},"schemas":{"CollectUsers":{"type":"object","properties":{"UserIds":{"type":"array","items":{"type":"string","format":"uuid"},"nullable":true},"UserEmailExact":{"type":"string","nullable":true},"UserFullNameContains":{"type":"string","nullable":true},"LastChangeTimeSince":{"type":"string","format":"date-time","nullable":true},"LastChangeTimeBefore":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false},"UserMatch":{"type":"object","properties":{"UserId":{"type":"string","format":"uuid"},"FullName":{"type":"string","nullable":true}},"additionalProperties":false}}},"paths":{"/api/accounts/users/collect":{"post":{"tags":["Accounts API: Users"],"summary":"Collects the list of users that match specific criteria","description":"Use LastChangeTimeSince and LastChangeTimeBefore to restrict the result set to users modified within a\r\nspecific window. Both parameters accept ISO 8601 date-time values, for example \"2026-07-06T14:00:00+00:00\".\r\nLastChangeTimeSince is inclusive; LastChangeTimeBefore is exclusive.","operationId":"collectUsers","requestBody":{"content":{"application/json-patch+json":{"schema":{"$ref":"#/components/schemas/CollectUsers"}},"application/json":{"schema":{"$ref":"#/components/schemas/CollectUsers"}},"text/json":{"schema":{"$ref":"#/components/schemas/CollectUsers"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/CollectUsers"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserMatch"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserMatch"}}}}}}}}}}
```

## Counts the users that match specific criteria

> Use LastChangeTimeSince and LastChangeTimeBefore to restrict the count to users modified within a> \
> specific window. Both parameters accept ISO 8601 date-time values, for example "2026-07-06T14:00:00+00:00".> \
> LastChangeTimeSince is inclusive; LastChangeTimeBefore is exclusive.

```json
{"openapi":"3.0.1","info":{"title":"Developer API","version":"v2.0.0"},"servers":[{"url":"/v2/e01"}],"security":[{"Bearer":[]},{"Cookie":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"-","name":"Bearer","in":"header"},"Cookie":{"type":"apiKey","description":"-","name":"InSite.WebToken","in":"cookie"}},"schemas":{"CountUsers":{"type":"object","properties":{"UserIds":{"type":"array","items":{"type":"string","format":"uuid"},"nullable":true},"UserEmailExact":{"type":"string","nullable":true},"UserFullNameContains":{"type":"string","nullable":true},"LastChangeTimeSince":{"type":"string","format":"date-time","nullable":true},"LastChangeTimeBefore":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false},"CountResult":{"type":"object","properties":{"Count":{"type":"integer","format":"int32"},"Summary":{"type":"string","nullable":true}},"additionalProperties":false}}},"paths":{"/api/accounts/users/count":{"post":{"tags":["Accounts API: Users"],"summary":"Counts the users that match specific criteria","description":"Use LastChangeTimeSince and LastChangeTimeBefore to restrict the count to users modified within a\r\nspecific window. Both parameters accept ISO 8601 date-time values, for example \"2026-07-06T14:00:00+00:00\".\r\nLastChangeTimeSince is inclusive; LastChangeTimeBefore is exclusive.","operationId":"countUsers","requestBody":{"content":{"application/json-patch+json":{"schema":{"$ref":"#/components/schemas/CountUsers"}},"application/json":{"schema":{"$ref":"#/components/schemas/CountUsers"}},"text/json":{"schema":{"$ref":"#/components/schemas/CountUsers"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/CountUsers"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CountResult"}},"text/json":{"schema":{"$ref":"#/components/schemas/CountResult"}}}}}}}}}
```

## Downloads the list of users that match specific criteria

> Use LastChangeTimeSince and LastChangeTimeBefore to download only users modified within a specific window,> \
> which is useful for incremental integrations that already hold most of the user data. Both parameters accept> \
> ISO 8601 date-time values, for example "2026-07-06T14:00:00+00:00". LastChangeTimeSince is inclusive;> \
> LastChangeTimeBefore is exclusive. When polling for deltas, subtract a small overlap (for example five> \
> minutes) from the previous poll time to allow for projection lag.

```json
{"openapi":"3.0.1","info":{"title":"Developer API","version":"v2.0.0"},"servers":[{"url":"/v2/e01"}],"security":[{"Bearer":[]},{"Cookie":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"-","name":"Bearer","in":"header"},"Cookie":{"type":"apiKey","description":"-","name":"InSite.WebToken","in":"cookie"}},"schemas":{"CollectUsers":{"type":"object","properties":{"UserIds":{"type":"array","items":{"type":"string","format":"uuid"},"nullable":true},"UserEmailExact":{"type":"string","nullable":true},"UserFullNameContains":{"type":"string","nullable":true},"LastChangeTimeSince":{"type":"string","format":"date-time","nullable":true},"LastChangeTimeBefore":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false}}},"paths":{"/api/accounts/users/download":{"post":{"tags":["Accounts API: Users"],"summary":"Downloads the list of users that match specific criteria","description":"Use LastChangeTimeSince and LastChangeTimeBefore to download only users modified within a specific window,\r\nwhich is useful for incremental integrations that already hold most of the user data. Both parameters accept\r\nISO 8601 date-time values, for example \"2026-07-06T14:00:00+00:00\". LastChangeTimeSince is inclusive;\r\nLastChangeTimeBefore is exclusive. When polling for deltas, subtract a small overlap (for example five\r\nminutes) from the previous poll time to allow for projection lag.","operationId":"downloadUsers","requestBody":{"content":{"application/json-patch+json":{"schema":{"$ref":"#/components/schemas/CollectUsers"}},"application/json":{"schema":{"$ref":"#/components/schemas/CollectUsers"}},"text/json":{"schema":{"$ref":"#/components/schemas/CollectUsers"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/CollectUsers"}}}},"responses":{"200":{"description":"OK"}}}}}}
```

## Searches for the list of users that match specific criteria

> Use LastChangeTimeSince and LastChangeTimeBefore to restrict the result set to users modified within a> \
> specific window. Both parameters accept ISO 8601 date-time values, for example "2026-07-06T14:00:00+00:00".> \
> LastChangeTimeSince is inclusive; LastChangeTimeBefore is exclusive.

```json
{"openapi":"3.0.1","info":{"title":"Developer API","version":"v2.0.0"},"servers":[{"url":"/v2/e01"}],"security":[{"Bearer":[]},{"Cookie":[]}],"components":{"securitySchemes":{"Bearer":{"type":"apiKey","description":"-","name":"Bearer","in":"header"},"Cookie":{"type":"apiKey","description":"-","name":"InSite.WebToken","in":"cookie"}},"schemas":{"SearchUsers":{"type":"object","properties":{"UserIds":{"type":"array","items":{"type":"string","format":"uuid"},"nullable":true},"UserEmailExact":{"type":"string","nullable":true},"UserFullNameContains":{"type":"string","nullable":true},"LastChangeTimeSince":{"type":"string","format":"date-time","nullable":true},"LastChangeTimeBefore":{"type":"string","format":"date-time","nullable":true}},"additionalProperties":false},"UserMatch":{"type":"object","properties":{"UserId":{"type":"string","format":"uuid"},"FullName":{"type":"string","nullable":true}},"additionalProperties":false}}},"paths":{"/api/accounts/users/search":{"post":{"tags":["Accounts API: Users"],"summary":"Searches for the list of users that match specific criteria","description":"Use LastChangeTimeSince and LastChangeTimeBefore to restrict the result set to users modified within a\r\nspecific window. Both parameters accept ISO 8601 date-time values, for example \"2026-07-06T14:00:00+00:00\".\r\nLastChangeTimeSince is inclusive; LastChangeTimeBefore is exclusive.","operationId":"searchUsers","requestBody":{"content":{"application/json-patch+json":{"schema":{"$ref":"#/components/schemas/SearchUsers"}},"application/json":{"schema":{"$ref":"#/components/schemas/SearchUsers"}},"text/json":{"schema":{"$ref":"#/components/schemas/SearchUsers"}},"application/*+json":{"schema":{"$ref":"#/components/schemas/SearchUsers"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserMatch"}}},"text/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/UserMatch"}}}}}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.shiftiq.com/developers/api-v2/navigating-the-api/accounts-api-users.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
