mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-18 18:11:57 +00:00
21 lines
379 B
Plaintext
21 lines
379 B
Plaintext
---
|
|
title: "Create Provider Group"
|
|
api: "POST /api/v1/provider-groups"
|
|
description: "Create a new provider group."
|
|
---
|
|
|
|
Create a group to organize multiple providers together.
|
|
|
|
## Request Body
|
|
\`\`\`json
|
|
{
|
|
"data": {
|
|
"type": "provider-groups",
|
|
"attributes": {
|
|
"name": "Production Providers",
|
|
"description": "All production cloud accounts"
|
|
}
|
|
}
|
|
}
|
|
\`\`\`
|