You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 10, 2018. It is now read-only.
BUG:
POST should not have {} around member list.
curl -X POST "$API_URL/orgs/acme/teams/TEAM_ID/members"
-H "Content-Type: application/json" -H "$AUTH" -d '{["bob"]}'
Should instead be:
curl -X POST "$API_URL/orgs/acme/teams/TEAM_ID/members"
-H "Content-Type: application/json" -H "$AUTH" -d '["bob"]'
The text was updated successfully, but these errors were encountered:
compliance api will likely change, so filing this so it would show up in google in case anyone hits this issue.
doc: https://docs.chef.io/api_compliance.html#id24
BUG:
POST should not have {} around member list.
curl -X POST "$API_URL/orgs/acme/teams/TEAM_ID/members"
-H "Content-Type: application/json" -H "$AUTH" -d '
{["bob"]}'Should instead be:
curl -X POST "$API_URL/orgs/acme/teams/TEAM_ID/members"
-H "Content-Type: application/json" -H "$AUTH" -d '["bob"]'
The text was updated successfully, but these errors were encountered: