Creating Asset Types

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:

  1. Asset Types (Classes of Asset, e.g. Cars, Phones)

  2. Assets (Specific Assets, e.g. Ferrari Spider or iPhone X)

Creating an Asset Type

Creating Asset Types is easy:

Creating Asset Type - Hero

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"
}'

Last updated