Skip to main content
GET
/
deployment
/
{id}
/
resources
Get Resources
curl --request GET \
  --url http://{host}:{port}/{contextPath}/deployment/{id}/resources \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "id": "anResourceId",
    "name": "anResourceName",
    "deploymentId": "anDeploymentId"
  },
  {
    "id": "anotherResourceId",
    "name": "anotherResourceName",
    "deploymentId": "anDeploymentId"
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The id of the deployment to retrieve the deployment resources for.

Response

Request successful.

id
string | null

The id of the deployment resource.

name
string | null

The name of the deployment resource

deploymentId
string | null

The id of the deployment.