Tagline
Get or create/update the a user's tagline field
Get Tagline
GET /v2/organization/:corporation/expert/:username/tagline
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Url
Name
Type
Description
corporation
number
Corporation ID
username
string
Unique username
Response
{
data: [
{
tagline: 'Tagline text for expert here.'
}
],
success: true
}Code
Update Tagline
POST /v2/organization/:corporation/expert/:username/tagline
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Url
Name
Type
Description
corporation
number
Corporation ID
username
string
Unique username
Body
Name
Type
Description
tagline*
string
Content of tagline
Response
Code
Last updated
Was this helpful?