Add a team to a business unit with the REST API
This use case scenario provides the Identity REST API request and payload for adding a team to a business unit.
Send the following request to add a team to a business unit:
http --auth-type=veracode_hmac PUT "https://api.veracode.com/api/authn/v2/business_units/{businessUnitId}?partial=true&incremental=true" < input.json
businessUnitId
is the numeric ID, separated with hyphens, for the target business unit. For example: 7336556f-9ef2-4a1c-b536-be8608822db6
.
The API passes the JSON file that you populate with the necessary values as shown in this example payload:
{
"teams": [
{
"team_id": "d56ebdfd-6797-4566-96a1-67455975b6a4"
}
]
}