devguard
Record templates

Create a record template.

POST
/record-templates/

Authorization

Authorization
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/record-templates/" \  -H "Content-Type: application/json" \  -d '{    "title": "string",    "slug": "string",    "organizationId": "string"  }'
{  "id": "string",  "organizationId": "string",  "title": "string",  "slug": "string",  "description": "string",  "content": null,  "order": -9007199254740991,  "createdAt": "string",  "updatedAt": "string",  "archivedAt": "string"}

How is this guide?