POST Method

The HTTP POST method is used in two different ways:

Post a New Resource

For example, to create a client account, send the following request:

POST https://uwin2012r2.n.local:9898/api/v7/Clients

Post an Action

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/Plans/12f39f64-245e-4430-a82e-126497007641/Enable

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