Disabling and enabling S3 users via REST API

You can disable a user (users are enabled by default) by sending a POST request to the ostor-users service along with the user email address and the disable parameter:

# s3_curl POST "http://s3.example.com/?ostor-users&emailAddress=user@example.com&disable"

You can enable a previously disabled user by sending a POST request to the ostor-users service along with the user email address and the enable parameter:

# s3_curl POST "http://s3.example.com/?ostor-users&emailAddress=user@example.com&enable"