Missing value of required parameter 'teamId'

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?

Use POST method instead of GET method while creating a folder.

2 Likes

Thank you for the quick reply Runcorn! However, it still doesn’t work:

Add, Content Type header as `application/json. And chose,json instead of text in raw.

1 Like

That did it! Thank you very much!