hello,
I am testing the Create APIs, but getting the error response “502Bad Gateway” in the call “Update Workspaces”. I have tried the mentioned mistakes from the response but still it is giving the error.
I have also pasted the curl of the call and screenshot below.
Kindly guide me in resolving the mater.
curl --location --request PATCH 'https://api.typeform.com/workspaces/id' \
--header 'Authorization: Bearer <token>' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw 'a
{
"op": "replace",
"path": "/name",
"value": "marketing workspace"
},
{
"op": "add",
"path": "/members",
"value": {
"email": "test@test.com"
}
},
{
"op": "remove",
"path": "/members",
"value": {
"email": "test@test.com"
}
}
]'
