Character Limit on Function String Parameter?

Good morning,

Has anyone encountered, or know if there is, a character limit on an input string parameter for a function?

I’ve done several functions where I pass a json payload from one function to another as a string parameter without problem. I’m wondering if I’m going to hit a problem if I take this approach on a new project that will have much larger json payloads.

I have done this many times for larger payloads.
I doubt you will have problems unless you give it something unreasonable that allocates more memory than is available on the server. If you run into that, there’s probably a better way.

2 Likes