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
  • Organisation updated
  • Billing configuration updated
  • User switched workspaces
ServicesPlatformEventsEvent types

Organization and billing

Was this page helpful?

Last updated July 15, 2025

Previous

OpenVPN lifecycle

Next

Work with system events

Built with
IDDescription
31Organisation updated
32Billing configuration updated
67User switched workspaces

Organisation updated

Organization’s country, name, or verification data changed.

Example JSON response
1{
2 "timestamp": "2021-12-20T16:09:23.950Z",
3 "alert": false,
4 "description": "Organisation data updated.",
5 "id": 9807326865071,
6 "event_type": {
7 "id": 31,
8 "description": "Organisation updated"
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": 58465,
20 "name": "Sample Corp"
21 },
22 "detail": {
23 "changed_data": [
24 {
25 "name": {
26 "old": "Sample Corp",
27 "new": "Sample Corp Ltd."
28 }
29 },
30 {
31 "verification_type_id": {
32 "old": "null",
33 "new": "1"
34 }
35 },
36 {
37 "verification": {
38 "old": "null",
39 "new": "DE123456789"
40 }
41 }
42 ]
43 }
44}

Billing configuration updated

Organization’s billing configuration changed.

Example JSON response
1{
2 "timestamp": "2021-12-20T10:18:39.000Z",
3 "alert": false,
4 "description": "Billing config has been updated.",
5 "id": 129565779460,
6 "event_type": {
7 "id": 32,
8 "description": "Billing configuration updated"
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": 627328,
20 "name": "Sample Corp"
21 },
22 "user": {
23 "id": 278906,
24 "name": "Sample User",
25 "username": "user@sample.com"
26 },
27 "detail": {
28 "billing_config": {
29 "charging_model": {
30 "id": 0
31 },
32 "payment_term": {
33 "id": 0
34 },
35 "vatin": "DE123456789"
36 }
37 }
38}

User switched workspaces

A user switched to a different Workspace. The description indicates the user ID and the ID of the Workspace they’re currently in.

Example JSON response
1{
2 "timestamp": "2023-09-06T11:14:44.000Z",
3 "alert": false,
4 "description": "User with id: '330885', switched to workspace: 44",
5 "id": 1088341100077457,
6 "event_type": {
7 "id": 67,
8 "description": "User switched workspaces"
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": 44,
20 "name": "Example Organization"
21 },
22 "user": {
23 "id": 330885,
24 "name": "cruz@example.com",
25 "username": "cruz@example.com"
26 }
27}