Skip to content

Commit

Permalink
JWT object support note
Browse files Browse the repository at this point in the history
  • Loading branch information
ShashiSubramanya authored Jan 28, 2025
1 parent 8269b48 commit 1da8a88
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions modules/ROOT/pages/authentication.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -610,9 +610,14 @@ The values to use.
]
----
|`objects` +
__Optional__ |__Array of strings__. Array of the object names or GUIDs to which you want to apply the security rules. The object `type` is mandatory if the object `name` is specified as the `identifier`.
__Optional__ a|__Array of strings__. An array of object names or GUIDs to which you want to apply the security rules. The object `type` is mandatory if the object `name` is specified as the `identifier`. Specify the object type as `LOGICAL_TABLE`.

If no object is specified in the API request, the filter and Parameter rules will be applied to all objects that the user has access to.
If no object is specified in the API request, the filter and Parameter rules will be applied to all `LOGICAL_TABLE` objects that the user has access to.

[NOTE]
====
The `LIVEBOARD` and `ANSWER` object types are not supported.
====

|`email` +
__Optional__ |__String__. Email address of the user. Use this parameter to add the email address of the user if `auto_create` is set to `true`.
Expand Down Expand Up @@ -663,7 +668,7 @@ curl -X POST \
],
"objects": [
{
"type": "LIVEBOARD",
"type": "LOGICAL_TABLE",
"identifier": "4c55ff63-d03e-497a-8ec6-1be083f160ee"
}
],
Expand All @@ -680,7 +685,7 @@ curl -X POST \
----

==== API response
If API request is successful, the API returns a token with the security rules and attributes applied.
If the API request is successful, ThoughtSpot returns a token with the security rules and attributes applied.

[source,JSON]
----
Expand Down

0 comments on commit 1da8a88

Please sign in to comment.