Hey,I need help regarding get users in thoughspot api v2.
I want to retrieve thoughspot user based on their name.
endpoint:api/rest/2.0/users/search
req body:{
"record_offset": 0,
"record_size": -1,
"include_favorite_metadata": false,
"user_identifier": "testUser12"
}
Even though I am giving user_identifier it is giving multiple records and my user is not even present in that.
I tried v1 api.It is working but the to get session id and client id,it is accepting body in x-www-form-urlencoded.I want to do it in json because I am working with okta workflows in which we have to give body in json.But when I try giving it in json,postman says 415Unsupported Media Type.
Header v1:given in the image
body:
{
"name": "xyz",
"password": "2vhUMTL"
}