Receive Data
After the user uses each integration in the Taiki app, Taiki will send the documents to your service via a webhook.
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:
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.
52.37.55.203
52.12.196.201
52.43.148.154
Last updated