List dealership plugins
GET
/api/v1/dealerships/{dealership_slug}/plugins
const url = 'https://dashboard.dealerstudio.com.au/api/v1/dealerships/example/plugins';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://dashboard.dealerstudio.com.au/api/v1/dealerships/example/plugins \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” dealership_slug
required
string
Dealership Slug
Responses
Section titled “ Responses ”Plugins found
Media type application/json
object
plugins
Array<object>
object
name
string
slug
string
categories
Array<string>
installed_at
string format: date-time
trial
boolean
Example
{ "plugins": [ { "name": "Test Drives", "slug": "test-drives", "categories": [ "Test Drives" ], "trial": false } ]}Unauthorized
Forbidden