> For the complete documentation index, see [llms.txt](https://integuru.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://integuru.gitbook.io/docs/detailed-references/receive-data.md).

# Receive Data

After the user uses each integration in the Taiki app, Taiki will send the documents to your service via a webhook.&#x20;

Note: the data isn't sent when the user finishes using the app but rather on a per platform basis

To set up/change the webhook URL please email Alan from the Taiki team (<alan@taiki.online>).\
\
Below is the schema:

```json5
POST /{YOUR_WEBHOOK_URL}
Content-Type: application/json

{
  "status": "success", 
  "data": {
    "id": 123, 
    "client_id": "a6f2f489-8cc9-4385-9649-efeabdfbe41b",
    "created_at": "2023-03-12T21:30:00Z" 
  },
  "files": [{ 
      "status": "success",
      "file_name": "1099_INT.pdf",
      "download_url": "download-url.com",
  }]
}
```

The following IP addresses will be used to send data from Taiki's servers. They should be whitelisted to ensure webhook requests come from Taiki servers.&#x20;

```
52.37.55.203
52.12.196.201
52.43.148.154
```


---

# 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://integuru.gitbook.io/docs/detailed-references/receive-data.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.
