Edit in GitHubLog an issue
B2B feature. Learn more
Thanks to Atwix for contributing this topic!

deleteCompanyTeam mutation

Use the deleteCompanyTeam mutation to delete a company team by ID. You can get the team ID with the company query.

This mutation requires a valid customer authentication token.

Syntax

Copied to your clipboard
mutation {
deleteCompanyTeam(
id: ID!
) {
DeleteCompanyTeamOutput
}
}

Reference

The deleteCompanyTeam reference provides detailed information about the types and fields defined in this mutation.

Example usage

The following example deletes the specified team.

Request:

Copied to your clipboard
mutation {
deleteCompanyTeam(
id: "Mg=="
) {
success
}
}

Response:

Copied to your clipboard
{
"data": {
"deleteCompanyTeam": {
"success": true
}
}
}
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.