Trigger Work Order calculation for change request

Trigger Work Order calculation for change request for Traffic Workflow.

Resource Name: /change-request/traffic/{changeRequestId}/work-order/calculate

Request Method: POST

Header requirements:

Key Value
Cookie FireFlow_Session=[sessionID]. The sessionId is retrieved from the authentication request.
Request URL Parameters:

Element

Type

Description

changeRequestId Mandatory

Integer

The ID of the new Change Request created. Should be the sub-ticket number (not the number of the parent ticket).

Response parameters

Element

Type

Description

status String

Status of the API request. One of these:

  • Success
  • Failure
messages List of message object type Populated when status is failure.
data string

Populated when status is success. One of the following:

  • Trigger Work Order for change request {changeRequestId} has finished successfully.
  • Work Order operation has finished with status failure.

message object type

Element

Type

Description

code string Headline of error.
message string Details of error.

Response:

Status codes:

Code

Description

200

ActiveChange was triggered

400

Input validation failure

403

Authentication failure

500

Failed to complete operation.

Request cURL examples

curl -k -X POST "https://<Machine_IP>/FireFlow/api/change-request/traffic/<ChangeRequestID>/work-order/calculate" -H "Cookie:RT_SID_FireFlow.443=<Cookie_Value>"

Response example for 200

{"status": "Success",

"messages": [],

"data": "Trigger work order for change request 64 has finished successfully"} }

Response example for 400

{
  "status": "Failure",
  "messages": [
    {
      "code": "CHANGE_REQUEST_NOT_FOUND",
      "message": "Change request 6354 not found"
    }
  ],
  "data": null
}

Back to top