API: SCIM 2.0 Provisioning
mobieusCore implements SCIM 2.0 to enable identity providers to provision and deprovision users automatically.
Base URL
https://{tenant}.mobieus.io/scim/v2
Authentication
Generate a SCIM token at Admin → Config → SCIM and pass it as:
Authorization: Bearer <token>
Supported endpoints
| Method | Path | Description |
|---|---|---|
| GET | /scim/v2/Users |
List users |
| POST | /scim/v2/Users |
Create user |
| GET/PUT/PATCH | /scim/v2/Users/{id} |
Manage user |
| DELETE | /scim/v2/Users/{id} |
Deactivate user |
| GET/POST | /scim/v2/Groups |
List/create groups |
See also: mobieusLearn SCIM setup.
## API: SCIM 2.0 Provisioning
mobieusCore implements SCIM 2.0 to enable identity providers to provision and deprovision users automatically.
### Base URL
```
https://{tenant}.mobieus.io/scim/v2
```
### Authentication
Generate a SCIM token at **Admin → Config → SCIM** and pass it as:
```
Authorization: Bearer <token>
```
### Supported endpoints
| Method | Path | Description |
|---|---|---|
| GET | `/scim/v2/Users` | List users |
| POST | `/scim/v2/Users` | Create user |
| GET/PUT/PATCH | `/scim/v2/Users/{id}` | Manage user |
| DELETE | `/scim/v2/Users/{id}` | Deactivate user |
| GET/POST | `/scim/v2/Groups` | List/create groups |
See also: [mobieusLearn SCIM setup](/know/learn-scim-setup).