POST Method
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 job, send the following request:
POST https://enterprise01.tech.local:9419/api/v1/jobs |
For example, to start configuration backup, send the following request:
POST https://enterprise01.tech.local:9419/api/v1/configBackup/backup |
In case of success, the HTTP POST method returns the 200 response code.