---
page_source: https://juspay.io/in/docs/upi-plugin-direct-psp/android/base-integration/upi-management
page_title: UPI Management
---


## UPI Profile Management



This operation supports all UPI Profile management features.


###   Process Parameters



## Request Payload
- **RequestId**:
  - Description: Unique uuid-v4 string
  - Value: Example: abcd-12345-abcd-12345
  - Tags: String, Mandatory
- **Service**:
  - Description: value: in.juspay.hyperapi
  - Tags: String, Mandatory
- **Payload**:
  - Description: Parameters required to call Hyper SDK API
  - Value:
    - **Action**:
      - Description: Operation to be performed in the SDK to open the management screen.
      - Value: value: management
      - Tags: String, Mandatory
    - **Protected**:
      - Description: Protected payload is a stringified JSON of the details mentioned in the below table.
      - Value:
        - **Kid**:
          - Description: Key ID to identify the public-private key pair used for signature generation.It will be provided to you by the Juspay team.
          - Value: Example: uat833359804655gg748702e324111
          - Tags: String, optional
        - **Alg**:
          - Description: Algorithm to generate JWS signature in respect to base 64.
          - Value: RS256
          - Tags: String, optional
      - Tags: String, optional
    - **Signature**:
      - Description: Signature generated for the signaturePayload.
      - Tags: String, Optional
    - **SignaturePayload**:
      - Description: Base 64 encoded stringified signature payload
      - Value:
        - **MerchantId**:
          - Description: Unique identifier associated with an account created by juspay.
          - Value: Example: stock
          - Tags: String, Optional
        - **MerchantCustomerId**:
          - Description: Merchant generated unique profile id for the customer.
          - Value: Example: abcde12345
          - Tags: String, Optional
        - **MerchantChannelId**:
          - Description: As provided by Juspay.
          - Value: Example: ade123
          - Tags: String, Optional
        - **Timestamp**:
          - Description: Time when request is created in milliseconds.
          - Value: Example: 1665996901100
          - Tags: String, Optional
      - Tags: String, Optional
  - Tags: JSON, Mandatory
- **ShouldExitOnDeregister**:
  - Description: This key needs to be passed to exit the user from the sdk flow after delinking.
  - Value: Example: True/False
  - Tags: Boolean, optional


## Response Payload
- **RequestId**:
  - Description: Unique uuid-v4 string
  - Value: Example: abcd-12345-abcd-12345
  - Tags: String
- **Service**:
  - Description: value: in.juspay.hyperapi
  - Tags: String
- **Payload**:
  - Description: Response Parameters
  - Value:
    - **Action**:
      - Description: Operation performed in the SDK.
      - Value: value: management
      - Tags: String
    - **Status**:
      - Description: Status of the Operation. Possible values : SUCCESS, PENDING, FAILURE
      - Value: Example: SUCEESS
      - Tags: String
  - Tags: JSON
- **Error**:
  - Description: Possible values :- true/false
  - Tags: Boolean
- **ErrorMessage**:
  - Description: Error Message
  - Tags: String
- **ErrorCode**:
  - Description: Error Code
  - Tags: String
- **Event**:
  - Description: value: process_result
  - Tags: String





#### Code Snippets: -

#### Java Code Snippet:

```java
{"success":false,"message":"No Data found for the given path"}
```

#### Kotlin Code Snippet:

```kotlin
{"success":false,"message":"No Data found for the given path"}
```
