> For the complete documentation index, see [llms.txt](https://wiki.mobivatebulksms.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.mobivatebulksms.com/archived-docs/registering-webhooks/short-url-click-notification.md).

# Short URL Click Notification

When a recipient clicks on a URL thas has been shortened by the system, a notification will be **POSTed** to the specified webhook URL.

### Headers

| Header       | Value            |
| ------------ | ---------------- |
| Content-Type | application/json |

### Arguments

<table><thead><tr><th>Name</th><th width="131">Type</th><th>Description</th></tr></thead><tbody><tr><td>messageId</td><td>string</td><td>Incoming Message Id</td></tr><tr><td>mobile</td><td>string</td><td>Message Originator - The mobile which sent the message..</td></tr><tr><td>batchId</td><td>string</td><td>Message Recipient - The virtual number or shortcode that received the message.</td></tr><tr><td>clientRef</td><td>string</td><td>Message reference as set by the client.</td></tr><tr><td>browser</td><td>string</td><td>Device browser.</td></tr><tr><td>country</td><td>string</td><td>Detected country based on IP Address.</td></tr><tr><td>ipAddress</td><td>string</td><td>IP address of the device.</td></tr><tr><td>iso2l</td><td>string</td><td>Two letter country ISO code (e.g. UK).</td></tr><tr><td>os</td><td>string</td><td>Device operating system.</td></tr><tr><td>url</td><td>string</td><td>The original (long) URL.</td></tr></tbody></table>

### Examples

{% tabs %}
{% tab title="Payload" %}

```json
{
   "mobile":"4400001234",
   "messageId":"9AEC3BB90A000A9D2FBD467178FF6827",
   "batchId":"9AEC3B590A000A9D2FBD4671C4D151BF",
   "clientRef":"ref-001",
   "browser":"Safari",
   "country":"United Kingdom",
   "ipAddress":"1.1.1.1",
   "iso2l":"UK",
   "os":"Mac OS X",
   "url":"http://vimeo.com/751393851?autoplay=1"
}
```

{% endtab %}
{% endtabs %}


---

# 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, and the optional `goal` query parameter:

```
GET https://wiki.mobivatebulksms.com/archived-docs/registering-webhooks/short-url-click-notification.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
