mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-18 18:11:57 +00:00
21 lines
296 B
Plaintext
21 lines
296 B
Plaintext
---
|
|
title: "Create User"
|
|
api: "POST /api/v1/users"
|
|
description: "Invite a new user to the tenant."
|
|
---
|
|
|
|
Create and invite a new user.
|
|
|
|
## Request Body
|
|
\`\`\`json
|
|
{
|
|
"data": {
|
|
"type": "users",
|
|
"attributes": {
|
|
"email": "user@example.com",
|
|
"name": "John Doe"
|
|
}
|
|
}
|
|
}
|
|
\`\`\`
|