rest api stated this command as to create user
curl -uadmin:admin -X POST 172.31.68.145:8111/app/rest/users
but it gives user list any suggestion how to create user?
rest api stated this command as to create user
curl -uadmin:admin -X POST 172.31.68.145:8111/app/rest/users
but it gives user list any suggestion how to create user?
Copyright © 2021 Jogjafile Inc.
It is because you have not specified any post data for the request.
Let us take an example:
This will perform a
POSTrequest onhttp://localhost:9090/api/loginwith thePOSTdata:{"username":"xyz","password":"xyz"}and header for this data is set to:Content-Type: application/json.