business_access_assets
Get members with access to asset
Get all the members the requesting business has granted access to on the given asset.
get/businesses/{business_id}/assets/{asset_id}/members
Path parameters
business_idstring required
Unique identifier of the requesting business.
asset_idstring required
Unique identifier of a business asset.
Query parameters
start_indexinteger
An index to start fetching the results from. Only the results starting from this index will be returned.
fetch_system_usersboolean
Fetches system users if True. Fetches regular user employees if False.
bookmarkstring
Cursor used to fetch the next page of items
page_sizeinteger
Maximum number of items to include in a single page. See documentation on Pagination for more information.
Response
The request has succeeded.
Example response
{
"items": [
{
"permissions": [
"FINANCE_MANAGER",
"CATALOGS_MANAGER",
"AUDIENCE_MANAGER"
],
"user": {
"email": "business0101@business.com",
"id": "549755885175",
"username": "business0101"
}
}
]
}