Developers

Creates a Shortcut resource

POST
/user/shortcuts

Creates a Shortcut resource

Authorization<token>

Value for the Authorization header parameter.

In: header

Request Body

The new Shortcut resource

TypeScript Definitions

Use the request body type in TypeScript.

name*string
Lengthlength <= 50
viewUrl*string
Lengthlength <= 255
isOpenedInNewTab*boolean

Response Body

curl -X POST "https://example.com/user/shortcuts" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "viewUrl": "string",    "isOpenedInNewTab": true  }'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "weight": 0,  "name": "string",  "viewUrl": "string",  "isOpenedInNewTab": true}