Create an Execution
/execution
Request
There are no request parameters for this operation.
Back to TopResponse
Default Response
Examples
The following example shows how to create an execution 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/execution" -H "accept: */*" -H "Content-Type: application/json" -d @file.json
where:
- file.json is the JSON file the execution details to create.
Example of Request Body
The following is an example of the contents of file.json sent as the request body:
{
"job_id": 5,
"environment_id": 5
}
Example of Response Body
If successful, the response code 201 is returned along with a header. For example:
{
"id": 12
}
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.