Hi everyone,
I’m trying to test Make’s API by using Postman to create a folder in Make.
I was able to ping Make successfully, and also get the teamId using my token and the docs.
However, when I try to create a folder I keep getting the following error:
{
"detail": "Validation failed for 1 parameter(s).",
"message": "Bad Request",
"code": "SC400",
"suberrors": [
{
"message": "Missing value of required parameter 'teamId'.",
"name": "Error"
}
]
}
I know I’m using the correct (and only) team id. I grabbed it directly from the URL, and I also verified it using the GET Teams call. I also tried to make a call using a JSON body, and not as a Text (updated the headers as well), but that didn’t work as well.
When I try to pass the team id as part of the request params, I get back a 200 code, but still - no folder is being created.
Does anyone know what the issue might be?