Validation Errors

You might encounter validation errors when sending requests to API endpoints. They will come in the following format

Headers:

Response Code: 422 Unprocessable Entity
Content-Type: application/problem+json; charset=utf-8

Payload:

{
  "statusCode": 422,
  "message": "One or more errors occurred!",
  "errors": {
    "generalErrors": [
      "The 'deployment_id' field is required and cannot be empty."
    ]
  }
}