POST Method

The HTTP POST method is used in two different ways:

Post a New Resource

For example, to create a user, send the following request:

POST https://127.0.0.1:11005/api/v1/users

Post an Action

For example, to enable MFA for a user with the ID administrator, send the following request:

POST https://127.0.0.1:11005/api/v1/Users/administrator/enableMfa

In case of success, the HTTP POST method returns the 200 response code.