Models

Delete

sam models delete byid 9 
> Successfully deleted the model with the ID of "9".

Get

models get byid

Patch

models patch byid

sam models patch byid 18 \
    --name "MacBook Air 2"
> Successfully updated the model with the ID "18" named "MacBook Air 2".

Post

models post create

sam models post create \
    --name "MacBook Air" \
    --manufacturer_id 1 \
    --category_id 1
> Successfully created a model with the ID "20" named "MacBook Air".