For the complete documentation index, see llms.txt. This page is also available as Markdown.

Show approval

Retrieve a single approval

get
Path parameters
orgstring · min: 1 · max: 128Required

Org is the organisation identifier.

Example: 1
projectstring · min: 1 · max: 128Required

Project is the project identifier.

Example: zq
idstring · uuidRequiredExample: afbbedda-95ac-4183-a480-1fccf6815767
Header parameters
Harness-Accountstring · min: 1 · max: 128Required

Account is the internal customer account ID.

Example: mur
Responses
200

OK response.

application/json

Show-ApprovalResponseBody result type (statusInfo view)

actioned_bystringOptional

User that approved/rejected the step

Example: John Doe
actioned_by_emailstringOptional

Email of the user that approved/rejected the step

Example: john.doe@example.com
createdinteger · int64Required

Created is the unix timestamp at which the resource was originally created in milliseconds.

Example: 3313899359027178000
statusstringRequired

Status of the approval resource

Default: pendingExample: Consequuntur voluptatem facere.
updatedinteger · int64Required

Modified is the unix timestamp at which the resource was last modified in milliseconds.

Example: 5539728288130761000
get/api/orgs/{org}/projects/{project}/approvals/{id}
GET /api/orgs/{org}/projects/{project}/approvals/{id} HTTP/1.1
Host: localhost:80
Harness-Account: mur
Accept: */*
{
  "actioned_by": "John Doe",
  "actioned_by_email": "john.doe@example.com",
  "created": 3206957337622337000,
  "status": "Id nemo.",
  "updated": 5095816187814179000
}

Last updated

Was this helpful?