API DocsRESTAsset service

GetAsset

Retrieves an asset.

GET
/api/v1/assets/{assetId}

Path Parameters

assetId
Required
string

The id of the asset to be retrieved. Required.

curl -X GET "<API_URL>/api/v1/assets/string" \
  -H "Authorization: Bearer <API_KEY>"

A successful response.

{
  "asset": {
    "assetId": "string",
    "name": "string",
    "organizationId": "string",
    "createdDate": "2019-08-24T14:15:22Z",
    "createdByUserId": "string",
    "modifiedDate": "2019-08-24T14:15:22Z",
    "modifiedByUserId": "string",
    "tags": [
      "string"
    ]
  }
}