Invite to topic
POSThttps://discourse.example.com/t/:id/invite.json
Invite to topic
Request
Path Parameters
id stringrequired
Header Parameters
Api-Key stringrequired
Api-Username stringrequired
- application/json
Body
user stringrequired
email stringrequired
Responses
- 200
topic updated
- application/json
- Schema
- Example (from schema)
Schema
user object
{
"user": {
"id": 0,
"username": "string",
"name": "string",
"avatar_template": "string"
}
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X POST 'https://discourse.example.com/t/:id/invite.json' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"user": "string",
"email": "string"
}'