Tagline

Get or create/update the a user's tagline field

Please note that in all urls & code samples you'll need to replace:username and :corporation with appropriate values

Get Tagline

GET /v2/organization/:corporation/staff/: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/staff/: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 *optional

Response

Code

Last updated

Was this helpful?