Aserto SCIM service
go run ./cmd/aserto-scim/main.go run -c ./config.yaml
curl 127.0.0.1:8080/Users
curl -X 'POST' -H 'Content-Type: application/json' 'http://127.0.0.1:8080/Users' --data-binary @- <<EOF
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"userName": "test1234",
"emails": [
{
"value": "[email protected]"
}
]
}
EOF
curl -X 'GET' 'http://127.0.0.1:8080/Users/{user id}'
curl -X 'DELETE' 'http://127.0.0.1:8080/Users/{user id}'