Class: SynsbasenApi::Model

Inherits:
Resource show all
Extended by:
Findable, Searchable
Defined in:
lib/synsbasen_api/resources/model.rb

Overview

The Model class provides methods for interacting with model-related endpoints in the Synsbasen API.

Constant Summary

Constants inherited from Client

Client::DEFAULT_BASE_URL

Class Method Summary collapse

Methods included from Findable

find

Methods included from Searchable

search

Methods inherited from Client

delete, get, post

Class Method Details

.all(brand_id, expand: []) ⇒ ApiResponse

Retrieves information about all models associated with a given brand.

Parameters:

  • brand_id (String)

    The unique identifier of the brand.

Returns:

  • (ApiResponse)

    An instance of ApiResponse containing details of all models associated with the specified brand.



16
17
18
# File 'lib/synsbasen_api/resources/model.rb', line 16

def all(brand_id, expand: [])
  get("/v1/brands/#{brand_id}/#{resource_name}", expand: expand)
end