Create an Environment

post

/environment

Creates the environment.

Request

There are no request parameters for this operation.

Back to Top

Response

201 Response

The environment was created successfully.
Back to Top

Examples

The following example shows how to create an environment by submitting a POST request on the REST resource using cURL. For more information about cURL, see "Use cURL".

The -d option specifies the file to attach as the request body.

curl -X POST "hostname:port/environment" -H "accept: */*" -H "Content-Type: application/json" -d @file.json

where:

  • file.json is the JSON file the environment details to create.

Example of Request Body

The following is an example of the contents of file.json sent as the request body:

{
  "name": "environment-100",
  "description": "environment-100 description"
}

Example of Response Body

If successful, the response code 201 is returned along with a header. For example:

{
  "name": "environment-100",
  "description": "environment-100 description"
}

If the request fails, the response includes the appropriate HTTP code. For a 4xx/5xx code, the message body also contains a ProblemDetails structure with the cause attribute set to the appropriate application error.

Back to Top