> For the complete documentation index, see [llms.txt](https://docs.developers.symphony.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.developers.symphony.com/embedded-modules/symphony-uri/symphony-uri-for-mobile.md).

# Symphony Messaging URI for Mobile (deprecated)

{% hint style="warning" %}
Following the introduction of **universal URIs** that work both on **desktop** and **mobile**, mobile-specific URIs are deprecated.\
URIs defined below will continue to work, but for any new integration, please use the universal URIs defined [here](/embedded-modules/symphony-uri.md).
{% endhint %}

#### The `symphony:` URI can be used to launch the Symphony Messaging iOS application from another iOS app.

## Launch the Symphony Messaging iOS app with a chat from another app

```
symphony://chat_with?username=USERNAME&name=USER_FULL_NAME
```

* `username` is the Symphony Messaging username of the person with whom the user wants to start/continue a 1-1 chat.
* `name` is an optional parameter used to specify the first and last name of the person with whom the user wants to start/continue a 1-1 chat. This will be used for a fallback option if no user with the provided username can be found.

```
symphony://chat_with?username=<john.smith>&name=John%20Smith
```

When the app is launched with the above URL, the UI should pop to the root view controller (if necessary) and then automatically go to a 1-1 chat with the user John Smith.

* If a 1-1 with the user `john.smith` already exists, all the conversation history is expected to be present.
* If a 1-1 conversation with the user `john.smith` doesn't exist yet, a new 1-1 conversation is created.
* If there is no such user with the username `john.smith`, the user is directed to a global search on the **People** tab with the search text field pre-populated with the user's full name.

{% hint style="info" %}
**Note:** The Symphony Messaging URI only supports internal use cases, as the search by username is only possible within the same company.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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.developers.symphony.com/embedded-modules/symphony-uri/symphony-uri-for-mobile.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.
