Memos

Create View

CreateMemoView creates a new View for a user.

POST
/api/v1/users/{user}/views

Path Parameters

user*string

The user id.

Query Parameters

validateOnly?boolean

Optional. If set, validate the request, but do not actually create the View.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

View messages

Response Body

application/json

application/json

curl -X POST "https://example.com/api/v1/users/string/views" \  -H "Content-Type: application/json" \  -d '{    "title": "string",    "filter": "string"  }'
{  "name": "string",  "title": "string",  "filter": "string",  "icon": {    "emoji": "string",    "lucide": "string"  }}