curl --request POST \
--url https://api.example.com/v1/users/policies/many \
--header 'Content-Type: application/json' \
--data '
[
{
"name": "toManage",
"roles": [
"Admin"
],
"isExternal": false
}
]
'Create many policies
curl --request POST \
--url https://api.example.com/v1/users/policies/many \
--header 'Content-Type: application/json' \
--data '
[
{
"name": "toManage",
"roles": [
"Admin"
],
"isExternal": false
}
]
'Was this page helpful?