The URL http://security.postman-breakable.com when making the POST to generate a new user is bringing as a response.
Error 403
{
“message”: “missing credentials”,
“status”: “FORBIDDEN”
}
It can be solved to be able to move forward with the tests
The URL http://security.postman-breakable.com when making the POST to generate a new user is bringing as a response.
Error 403
{
“message”: “missing credentials”,
“status”: “FORBIDDEN”
}
It can be solved to be able to move forward with the tests
I’ve just tested this and its currently working.
I removed the username and password from the JSON request so it was sending a blank object and it brings back the same error as you are receiving.
You need to add a JSON body to the request with a username and password.
The Good Bank APIs collection, and duplicate it over to the Setup folder.POST Create Useruser_id. Create a collection variable called user_id with this information, using any method you prefer.{
"username": "uniqueUserName",
"password": "password"
}
Thanks, make the change and it works OK