Memos
User Service

Create User Webhook

CreateUserWebhook creates a new webhook for a user.

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

Path Parameters

user*string

The user id.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

UserWebhook represents a webhook owned by a user.

Response Body

application/json

application/json

curl -X POST "https://example.com/api/v1/users/string/webhooks" \  -H "Content-Type: application/json" \  -d '{}'
{  "name": "string",  "url": "string",  "displayName": "string",  "createTime": "2019-08-24T14:15:22Z",  "updateTime": "2019-08-24T14:15:22Z",  "signingSecret": "string",  "signingSecretSet": true}