I'm using postman native app but creating the environment using the postman API to avoid a manual step. I was successfully able to create the environment using the following:
POST - https://api.getpostman.com/environments
{
"environment": {
"name": "My New Environment",
"values": [
{"key": "variable_name_1", "value": "my_value"},
{"key": "variable_name_2", "value": "my_other_value"}
]
}
}
But, the newly created environment is not being displayed in the native app's environment's dropdown (even after the sync is complete).
Did anyone experience a similar issue and any pointers on how to resolve it ?
Thanks