docs/dashboards.md in losant_rest-1.0.8 vs docs/dashboards.md in losant_rest-1.1.0

- old
+ new

@@ -19,10 +19,15 @@ result = client.dashboards.get(optional_params) puts result ``` +#### Authentication +The client must be configured with a valid api access token to call this +action. The token must include at least one of the following scopes: +all.Organization, all.SolutionUser, all.SolutionUser.read, all.User, dashboards.*, or dashboards.get. + #### Available Parameters | Name | Type | Required | Description | Default | Example | | ---- | ---- | -------- | ----------- | ------- | ------- | | sortField | string | N | Field to sort the results by. Accepted values are: name, id, creationDate, ownerId | name | name | @@ -54,9 +59,14 @@ ```ruby result = client.dashboards.post(dashboard: my_dashboard) puts result ``` + +#### Authentication +The client must be configured with a valid api access token to call this +action. The token must include at least one of the following scopes: +all.Organization, all.User, dashboards.*, or dashboards.post. #### Available Parameters | Name | Type | Required | Description | Default | Example | | ---- | ---- | -------- | ----------- | ------- | ------- |