Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This POST service will retrieve the applicationRequestStatus based on the applicationRequestId in the request. Most of the Status statuses are interim statuses. Only , only COMPLETED and FAILED are final status. Your request will fall into one of these two upon completion. The following are all of the possible statuses that can be returned:

  • INITIATED,
  • PENDING_APPROVAL,
  • SCHEDULED,
  • REJECTED,
  • READY,
  • SUBMITTED,
  • COMPLETED,
  • FAILED


Info
titleAPI URL
http://host:port/flexdeploy/rest/workflow/getApplicationRequestStatus

...

Code Block
languagejs
titleSample JSON Request
linenumberstrue
{
	"authentication":
	{
		"userId": "userid",
		"password": "mypassword"
	},
	"applicationRequestId": "28208"142356
}

Parameters

Parameter

Required

Type

Description

authentication

YSee Common Parameters below.

Object

The authentication parameter is comprised of 2 fields.

  • userId – a valid user id for FlexDeploy
  • password – the associated password


applicationRequestId

Y

Long

The requestId to retrieve the status for.

...