POST Method
The HTTP POST method is used in two different ways:
- To create a new resource, for example, to create a new client.
- To perform an operation, for example, to enable an orchestration plan.
For example, to create a client account, send the following request:
POST https://uwin2012r2.n.local:9898/api/v7.1/Clients |
For example, to enable a plan with the ID 12f39f64-245e-4430-a82e-126497007641, send the following request:
POST https://uwin2012r2.n.local:9898/api/v7.1/Plans/12f39f64-245e-4430-a82e-126497007641/Enable |
In case of success, the HTTP POST method returns the 200 or 204 response code.