Hey Andrei, thanks for reaching out! The 413 error occurs because the payload size limit for webhooks in Clay is 100KB. Even though individual cell sizes in your table can accommodate up to 200KB, the webhook payload itself cannot exceed the 100KB limit. This limitation ensures stable and consistent processing of incoming data.
To avoid the 413 error, here are a few suggestions:
1. Break Down Larger Payloads: Split your JSON data into smaller chunks of less than 100KB before sending them to the webhook.
2. Batch Requests: If possible, send multiple smaller requests instead of a single large one.
3. Optimize Data: Minimize the size of your JSON payload by removing unnecessary fields, whitespace, or other extraneous data.
Hope this helps! Let us know how else we can assist here. :)