# 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.


---

# Agent Instructions: 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:

```
GET https://docs.welkinhealth.com/admin/apis-and-integrations/user-provisioning-api.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
