Vigilfield Docs
API referenceUsers

`POST /users` — create a user in the org.

POST/users

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/users" \  -H "Content-Type: application/json" \  -d '{    "email": "string"  }'
{  "avatar": "string",  "created_at": "string",  "email": "string",  "id": "string",  "is_admin": true,  "kind": "native",  "last_login_at": "string",  "name": "string",  "org_id": "string",  "provisioned_by": "string",  "role": null,  "status": null,  "status_unrecognized": "string",  "team_ids": [    "string"  ],  "updated_at": "string"}