This is an archive version of the document. To get the most up-to-date information, see the current version.

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://51.11.247.127/api/v5/users

Post an Action

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

POST https://51.11.247.127/api/v5/users/1234/enableMfa

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