Skip to main content
PUT
/
v3
/
sites
/
{site}
/
teams
/
{team}
/
asset-access
Update Asset Access
curl --request PUT \
  --url https://app.plugchoice.com/api/v3/sites/{site}/teams/{team}/asset-access \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "access_of_assets": "<string>",
  "accessible_assets": [
    {
      "accessible_assets[].asset_type": "<string>",
      "accessible_assets[].asset_id": 123
    }
  ]
}
'
{
  "message": "<string>"
}
Modifies a team’s asset-level access for the specified location. You can grant full access to all assets or restrict access to specific assets.
site
string
required
The UUID of the location.
team
string
required
The UUID of the team.
access_of_assets
string
required
The access level. Must be full_access or limited_access.
accessible_assets
array
An array of asset objects the team can access. Required when access_of_assets is limited_access.

Response

message
string
A confirmation message indicating asset access was modified successfully.