Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #656 from zapier/limit
Browse files Browse the repository at this point in the history
PLATSUP-1067 - update polling trigger payload limit
  • Loading branch information
marinahand authored Aug 22, 2024
2 parents 06eeefd + 1a1dedb commit 630dcc0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/_build/troubleshooting/operating-constraints.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Many errors can be viewed in your integration's log monitoring in the [Platform
| Deduplication table | 105,000 rows per Zap |
| Custom fields | 1000 |
| Webhook payload | 10 MB |
| HTTP response payload | 6 MB |
| HTTP response payload | 20 MB |
| Downloaded files | ~120 MB |

| Throttles | |
Expand Down
8 changes: 4 additions & 4 deletions docs/_build/troubleshooting/troubleshoot-trigger-payload.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ redirect_from:

### Constraint

When a user clicks **Test Trigger** in the Zap editor, the response payload must be less than 6MB.
When a user clicks **Test Trigger** in the Zap editor, the response payload must be less than 20MB.

### Errors user will see if constraint is hit

- _“Scripting payload too large ('n' bytes but max is 6291456bytes).”_ - ('n' is the number of bytes in the payload.)
- _“Scripting payload too large ('n' bytes but max is xxx bytes).”_ - ('n' is the number of bytes in the payload.)

### Best practice

Expand All @@ -35,7 +35,7 @@ When a user toggles a Zap with a polling trigger “On”, Zapier does some addi

First, it tests the user’s authentication to your service.

Then it uses the trigger's `perform` method to build a [deduplication table](https://platform.zapier.com/build/deduplication) of records, so that the Zap will not run for existing records. The payload returned from this request must also be less than 6 MB.
Then it uses the trigger's `perform` method to build a [deduplication table](https://platform.zapier.com/build/deduplication) of records, so that the Zap will not run for existing records. The payload returned from this request must also be less than 20 MB.

### Errors user will see if constraint is hit

Expand All @@ -55,7 +55,7 @@ For those requests that might otherwise exceed timeout or size limits, you can m

### Constraint

Each time a Zap executes, the trigger's response payload must be less than 6MB for a polling trigger and less than 10 MB for a REST Hook trigger.
Each time a Zap executes, the trigger's response payload must be less than 20MB for a polling trigger and less than 10 MB for a REST Hook trigger.

### Errors user will see if constraint is hit

Expand Down

0 comments on commit 630dcc0

Please sign in to comment.