---
page_title: Intent Handling
product: UPI TPAP SDK
platform: iOS
page_source: https://juspay.io/in/docs/upi-tpap-sdk/ios/interaction-with-sdk/intent-handling
llms_txt: https://juspay.io/in/docs/llms.txt
product_llms_txt: https://juspay.io/in/docs/upi-tpap-sdk/llms.txt
---


## Intent Handling




###   Info.plist


Changes in plist for Incoming Intent, Incoming Mandate and UPI Global



#### Code Snippets: -

#### Objective-C Code Snippet:

```objective-c
<!-- block:start:intent -->

<key>LSApplicationQueriesSchemes</key>
<array>
    <string>stock-upi</string>         <!-- REPLACE stock with merchant name -->
</array>

<!-- block:end:intent -->
```

#### Swift Code Snippet:

```swift
<!-- block:start:intent -->

<key>LSApplicationQueriesSchemes</key>
<array>
    <string>stock-upi</string>         <!-- REPLACE stock with merchant name -->
</array>

<!-- block:end:intent -->
```


---

## Complete Code Reference

The following code files are referenced in the steps above:

### Info.plist

```
<!-- block:start:intent -->

<key>LSApplicationQueriesSchemes</key>
<array>
    <string>stock-upi</string>         <!-- REPLACE stock with merchant name -->
</array>

<!-- block:end:intent -->
```


---

## See Also

- [Handle SDK Response](https://juspay.io/in/docs/upi-tpap-sdk/ios/interaction-with-sdk/handle-sdk-response)
- [IN-APP UPI with UI](https://juspay.io/in/docs/upi-tpap-sdk/ios/ui-process-payloads/inapp-ui)
