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"
}