List Studio Members
| nimblestudio_list_studio_members | R Documentation |
Get all users in a given studio membership¶
Description¶
Get all users in a given studio membership.
list_studio_members only returns admin members.
Usage¶
Arguments¶
maxResultsThe max number of results to return in the response.
nextTokenThe token for the next set of results, or null if there are no more results.
studioId[required] The studio ID.
Value¶
A list with the following syntax:
list(
members = list(
list(
identityStoreId = "string",
persona = "ADMINISTRATOR",
principalId = "string",
sid = "string"
)
),
nextToken = "string"
)