Topics
CRUD endpoints for a user's topics
Get All Topics
GET /v2/organization/:corporation/expert/:username/topic
Headers
Content-Type
application/json
Authorization
Bearer <token>
Url
corporation
number
Corporation ID
username
string
Unique username
Response
{
data: [
{
id: 1,
name: "topic name"
}
],
success: true
}Code
Get Individual Topic
GET /v2/organization/:corporation/expert/:username/topic/:id
Headers
Content-Type
application/json
Authorization
Bearer <token>
Url
corporation
number
Corporation ID
username
string
Unique username
id
number
Topic ID
Response
Code
Create Topic
POST /v2/organization/:corporation/expert/:username/topic
Headers
Content-Type
application/json
Authorization
Bearer <token>
Url
corporation
number
Corporation ID
username
string
Unique username
Body
name*
string
Topic Name
Response
Code
Delete Topic
DELETE/v2/organization/:corporation/expert/:username/topic/:id
Headers
Content-Type
application/json
Authorization
Bearer <token>
Url
corporation
number
Corporation ID
username
string
Unique username
id
number
Topic ID
Response
Code
Last updated
Was this helpful?