POST Method
In this article
The HTTP POST method is used in two different ways:
- To create a new resource, for example, to create a user.
- To perform an operation, for example, to enable MFA.
For example, to create a user, send the following request:
POST https://127.0.0.1:13140/api/v1/accounts/users |
For example, to enable MFA for a user with the name administrator, send the following request:
POST https://127.0.0.1:13140/api/v1/accounts/users/administrator/mfaEnable |
In case of success, the HTTP POST method returns the 200 response code.