User Provisioning: API

The User Provisioning API allows programmatic user management in Welkin. This enables automated user creation, updates, and deletions through API calls.

To use the User Provisioning API:

  • Obtain API credentials from Admin

  • Use the API endpoints to manage users programmatically

  • Implement authentication using your API key

  • Make requests to create, read, update, or delete users

Common API operations include:

  • POST /users - Create a new user

  • GET /users/{id} - Retrieve user information

  • PUT /users/{id} - Update user information

  • DELETE /users/{id} - Delete a user

The API response includes the user data and any errors that occurred.

Note: API access should be restricted to authorized applications. Never expose API keys in public code or client-side applications.

Last updated

Was this helpful?