Creating Asset Types
Last updated
Last updated
Not everyone needs Event Types and Events.
You could go straight to creating Assets and managing these as first class entities in Sky Ledge. Sky Ledge offers an out of the box Asset Management solution that’s fully API driven.
Asset Management is easy to understand, there are two concepts:
Asset Types (Classes of Asset, e.g. Cars, Phones)
Assets (Specific Assets, e.g. Ferrari Spider or iPhone X)
Creating Asset Types is easy:
POST api.skyledge.com/asset-types
{
"identifier":"hero",
"name":"Hero",
"description":"A HP Inc consumer"
}
curl --location --request POST 'https://api.skyledge.com/asset-types' \
--header 'X-Authorization: API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"identifier":"hero",
"name":"Hero",
"description":"A HP Inc consumer"
}'