Vigilfield Docs
API referenceApps

`POST /apps` — provision a fresh app and issue its first key in a single round trip.

POST/apps

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

POST /apps body.

Response Body

application/json

curl -X POST "https://example.com/apps" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "created_at": "string",  "description": "string",  "email": "string",  "id": "string",  "name": "string",  "owner_user_id": "string",  "published": true,  "required_permissions": [    "string"  ],  "role": "owner",  "team_ids": [    "string"  ]}