Get asset type

GET /data/asset-types/{asset_type_id}

Retrieve detailed information about a specific asset type including metadata and configuration

Path parameters

  • asset_type_id Required

    Unique identifier of the asset type

Responses

  • 200 application/json

    Given asset type

    Hide response attributes Show response attributes object
    • id string(uuid)

      Asset type unique identifier

    • name string

      Asset type name

    • created_at string(date-time)

      Creation timestamp

    • updated_at string(date-time)

      Last update timestamp

GET /data/asset-types/{asset_type_id}
curl \
 --request GET 'http://api.example.com/data/asset-types/a24a6ea4-ce75-4665-a070-57453082c25' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "id": "c46c8gc6-eg97-6887-c292-79675204e47",
  "name": "Character",
  "created_at": "2023-01-01T12:00:00Z",
  "updated_at": "2023-01-01T12:30:00Z"
}