Request Decoding
Description
The request body has failed during JSON decoding.
Causes
JSON Syntax
JSON is incorrectly formatted. For example, missing ,
or "
.
Example
{
"field_one": "one"
"field_two: "two"
}
Type Mismatch
JSON is valid, but there is a type mismatch with one or more of the fields. For example, a customer_id
field expects a string however a number is provided in the request
Invalid Example
{
"customer_id": 123456789
}
Valid Example
{
"customer_id": "123456789"
}
If you have any questions, please contact us via the chatbot (bottom-right of screen 👉) or via a support request or check our FAQs.
Updated 10 days ago