PUT api/deployments/{id}/depapproval

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

DeploymentApproval
NameDescriptionTypeAdditional information
status

boolean

None.

Reason

string

None.

ApprovedBy

integer

None.

ApprovedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "status": true,
  "Reason": "sample string 1",
  "ApprovedBy": 2,
  "ApprovedDate": "2025-09-06T05:36:54.1953547+00:00"
}

application/xml, text/xml

Sample:
<DeploymentApproval xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CA.BLayer.Common.Model">
  <ApprovedBy>2</ApprovedBy>
  <ApprovedDate>2025-09-06T05:36:54.1953547+00:00</ApprovedDate>
  <Reason>sample string 1</Reason>
  <status>true</status>
</DeploymentApproval>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.