When I attempt to create a solution article from URL using the Article creation API, I get the following errors:
"description": "Validation failed",
"errors": r
{
"field": "title",
"message": "This field cannot be empty",
"code": "missing_field"
},
{
"field": "description",
"message": "This field cannot be empty",
"code": "missing_field"
},
{
"field": "folder_id",
"message": "This field cannot be empty",
"code": "missing_field"
},
{
"field": "status",
"message": "This field cannot be empty",
"code": "missing_field"
}
]
I have all of these values set in the API call. I have tried all sorts of formatting to make sure that the values are the correct type as well. I am using postman currently, but I have also tried just running this in powershell with the same result. I am sure that there is something that I am missing, but I cannot figure out what it is.
Has anyone seen something like this and been able to get around it?
Thanks!