For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Request featuresContact support
    • Welcome
  • Quickstart
    • Sign up for an account
    • emnify Trial plan
    • Order and auto-register SIMs
    • Register SIMs
    • Create a device
    • Configure the APN
    • emnify REST API
    • Troubleshooting
  • Services
      • Data Streamer
      • Events
        • Event types
          • Generic events
          • Network attachment and location
          • Data connection lifecycle
          • Application and user authentication
          • User management
          • Device status management
          • Limit enforcement
          • Data quota management
          • SMS quota management
          • Cloud Connect lifecycle
          • OpenVPN lifecycle
          • Organization and billing
        • Work with system events
      • Security
    • Support
LogoLogo
Request featuresContact support
On this page
  • User verified
  • User deleted
ServicesPlatformEventsEvent types

User management

Was this page helpful?

Last updated July 15, 2025

Previous

Application and user authentication

Next

Device status management

Built with
IDDescription
41User verified
46User deleted

User verified

User successfully verified their email.

Example JSON response
1{
2 "timestamp": "2021-12-20T00:12:23.000Z",
3 "alert": false,
4 "description": "User 'user@sample.com' verified successfully",
5 "id": 85170815043,
6 "event_type": {
7 "id": 41,
8 "description": "User verified"
9 },
10 "event_source": {
11 "id": 2,
12 "description": "API"
13 },
14 "event_severity": {
15 "id": 0,
16 "description": "Info"
17 },
18 "organisation": {
19 "id": 14543,
20 "name": "Sample Corp"
21 },
22 "user": {
23 "id": 676919,
24 "name": "Sample User",
25 "username": "user@sample.com"
26 }
27}

User deleted

A user deleted another user’s account.

Example JSON response
1{
2 "timestamp": "2021-12-20T08:52:10.000Z",
3 "alert": false,
4 "description": "User 'user@sample.com' deleted",
5 "id": 1082729721368,
6 "event_type": {
7 "id": 46,
8 "description": "User deleted"
9 },
10 "event_source": {
11 "id": 2,
12 "description": "API"
13 },
14 "event_severity": {
15 "id": 1,
16 "description": "Warn"
17 },
18 "organisation": {
19 "id": 53246,
20 "name": "Sample Corp"
21 },
22 "user": {
23 "id": 292,
24 "name": "Sample Admin",
25 "username": "admin@sample.com"
26 },
27 "detail": {
28 "user": {
29 "id": 82894,
30 "username": "user@sample.com"
31 }
32 }
33}