Trigger Recertification of a Change Request
Triggers recertification of the specified Change Request.
Resource name: /change-requests/traffic/{changeRequestId}/recertification
Request Method: POST
Request Path parameters
Parameter | Data type | Description |
---|---|---|
changeRequestId mandatory | integer (int64) | The ID of the Change Request to recertify. |
cURL Example
curl -X 'POST' \
'https://<locahost>/FireFlow/api/change-requests/traffic/139/recertification' \
-H 'accept: */*' \
-d ''
Status codes
Code | Description |
---|---|
200 | Recertification Request was triggered |
400 | Bad Request |
403 | Authentication failure |
500 | Unexpected failure |
Response parameters
Parameter | Type | Description |
---|---|---|
status | string | Result status (Success, Failure, PartiallySuccess) |
messages | array of MessageDetails | Possible messages describing the outcome |
code | string | Short identifier for the message |
message | string | Detailed explanation of the error |
data | LegacyTicketIdResponse | Information about the recertification request |
ticketId (example) | number | The internal identifier for the recertification ticket |
message | string | Detailed explanation of the of the successful request |
Response example success 200
{
"status": "Success",
"messages": [],
"data": {
"ticketId": 123,
"message": "Recertification triggered successfully."
}
}
Response example failure 400
{
"status": "Failure",
"messages": [
{
"code": "400",
"message": "Bad Request. changeRequestId not valid."
}
],
"data": {}
}