从teamcity rest API创建用户

时间:2017-05-20 11:33:13

标签: curl teamcity command-line-interface teamcity-rest-api

rest api将此命令声明为创建用户

curl -uadmin:admin -X POST 172.31.68.145:8111/app/rest/users

但它为用户列表提供了如何创建用户的任何建议?

1 个答案:

答案 0 :(得分:2)

这是因为您没有为请求指定任何发布数据。

让我们举一个例子:

curl -H "Content-Type: application/json" -X POST -d '{"username":"xyz","password":"xyz"}' http://localhost:9090/api/login

这将在POST上使用http://localhost:9090/api/login数据POST执行{"username":"xyz","password":"xyz"}请求,此数据的标头设置为:Content-Type: application/json