Skip to main content
GET
/
deployment
/
{id}
/
resources
/
{resourceId}
Get Resource
curl --request GET \
  --url http://{host}:{port}/{contextPath}/deployment/{id}/resources/{resourceId} \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "someResourceId",
  "name": "someResourceName",
  "deploymentId": "someDeploymentId"
}

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

resourceId
string
required

The id of the deployment resource

Response

Request successful.

A JSON object corresponding to the Resource interface in the engine. Its properties are as follows:

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.