---
title: March 2023
description: New PingOne Authentication Connector
component: connectors
page_id: connectors::relnotes/archive/2023-03-March
canonical_url: https://docs.pingidentity.com/connectors/relnotes/archive/2023-03-March.html
llms_txt: https://docs.pingidentity.com/connectors/llms.txt
docs_for_agents: https://developer.pingidentity.com/build-with-ai/docs-for-agents.md
revdate: January 16, 2026
section_ids:
  march-5: March 5
  the-pingone-authentication-connector-is-now-available: The PingOne Authentication Connector is now available
  the-azure-ad-user-management-connector-is-now-available: The Azure AD User Management connector is now available
  new-capabilities-for-getting-information-by-device-id: New capabilities for getting information by device ID
  checkboxes-in-html-forms-now-return-detailed-values: Checkboxes in HTML forms now return detailed values
---

# March 2023

## March 5

### The PingOne Authentication Connector is now available

New PingOne Authentication Connector

You can use the [PingOne Authentication Connector](../../p1_authentication_connector.html) to:

* Authenticate users by integrating DaVinci flows into your application using a browser redirect or the DaVinci widget

* Create, update, or delete PingOne authentication sessions

* Check whether a user has an active session

### The Azure AD User Management connector is now available

New Azure AD User Management Connector

You can use the [Azure AD User Management Connector](../../azure_ad_user_management_connector.html) to:

* Query user information

* Create, update, and delete users

* List the users in a group

* Add and remove group members

* Add and remove software licenses and disable plans

### New capabilities for getting information by device ID

New CrowdStrike Connector

We have added the following capabilities to the [CrowdStrike Connector](../../crowdstrike_connector.html):

* **Check Device Status by Device ID**

* **Get Incident Scores by Device ID**

These allow you to create more granular policies by targeting a specific device.

### Checkboxes in HTML forms now return detailed values

Improved HTTP Connector

The [HTTP Connector](../../http_connector.html) **Custom HTML Template** capability is often used to build a form, with checkbox elements such as the following:

```
<input type="checkbox" name="customerLocation" id ="customerLocation" value="loc256">
```

Previously, checkboxes would only return `true` or `false`, such as:

```
customerLocation=true
```

Now, when the checkbox is selected, it provides the `value` defined in the element properties, such as:

```
customerLocation=loc256
```

Other scenarios:

* When the checkbox is selected and a `value` isn't defined, it returns `true` or `on`, depending on the browser.

* When the checkbox is cleared, no value is returned.

|   |                                                                                                                                                                                                                                                                                                                             |
| - | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|   | This change could impact the function of your production flows.Review any flows that use the **Custom HTML Template** capability to show a check box to the user. If so, check whether the flow relies on a `true` or `false` result from the check box and adapt it to accept `true` or `on`, a value string, or no value. |
