> ## Documentation Index
> Fetch the complete documentation index at: https://razorpay-60c89f9a-mintlify-audit-missing-sections-1778528421.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Update UPI Number

> **PATCH** `/v1/upi/tpap/upi_number`

Use this endpoint to change VPA, deactivate, deregister, or activate an existing UPI number.

### Request

```curl: Curl  theme={null}
-X PATCH 'https://api.rzp..com/v1/upi/tpap/upi_number' \
-u [YOUR_KEY_ID]:[YOUR_SECRET] \
-H "Content-Type: application/json" \
-H "x-device-fingerprint: " \
-H "x-device-fingerprint-timestamp: 1496918882000" \
-H "x-customer-reference: cust_ref" \
-d '{
  "upi_number": "1234567890",
  "vpa": "newuser@upi",
  "action": "change_vpa",
  "consent": true
}'
```

### Response

````json: Response theme={null}
{
  "entity": "upi_number",
  "upi_transaction_id": "123qwert12",
  "upi_number": "1234567890",
  "type": "mobile",
  "status": "active",
  "vpa": "gaurav.kumar@exampleupi"
}

```json: Failure
{
  "error": {
    "code": "BAD_REQUEST_ERROR",
    "description": "Consent is mandatory",
    "source": "internal",
    "step": "",
    "reason": "user consent must be true",
    "field": "consent",
    "metadata": null
  }
}
````

### Parameters

`upi_number` *mandatory*
: `string` The UPI number to be updated.

`vpa` *mandatory*
: `string` VPA to which the number is mapped.

`action` *mandatory*
: `string` Action to be performed on UPI number. Possible values:

* `change_vpa`
* `inactivate`
* `deregister`
* `activate`

`consent` *mandatory*
: `boolean` Consent of the user to update the UPI number.

* `true`: The user has given the consent.
* `false`: The user has not given the consent.

### Parameters

`entity`
: `string` Collection of entity. Here it is `upi_number`.

`upi_transaction_id`
: `string` Unique transaction id created by the originator.

`upi_number`
: `string` Unique id mapped to the customer's VPA.

`type`
: `string` Type of number. For example, mobile or numeric.

`status`
: `string` Status of the UPI number.  Possible values:

* `active`
* `inactive`
* `deregistered`

`vpa`
: `string` VPA linked to the UPI number.
