Module: SynsbasenApi::Findable
Overview
Provides a method to find a resource by its ID.
This module is intended to be extended in classes that represent resources.
Instance Method Summary collapse
-
#find(id, expand: []) ⇒ ApiResponse
Retrieves information about a specific record based on its ID.
Instance Method Details
#find(id, expand: []) ⇒ ApiResponse
Retrieves information about a specific record based on its ID.
14 15 16 |
# File 'lib/synsbasen_api/findable.rb', line 14 def find(id, expand: []) get("/v1/#{resource_name}/#{id}", expand: ) end |