Unexpected request body
Your request contains a body, but this is not expected for this endpoint.
Error Message | Unexpected body included in the request. |
Error Code | unexpected_request_body |
Status Code | 400 |
Common causes
You're sending a body with a GET request.
You have used the wrong HTTP method.
This specific endpoint does not expect a body to be sent.
Solutions
Ensure you haven't included a body with a GET request.
Check that you haven't used GET instead of your intended POST, PUT or PATCH.
On this page