Biography

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

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

Get Biography

GET /v2/organization/:corporation/staff/:username/biography

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Url

Name
Type
Description

corporation

number

Corporation ID

username

string

Unique username

Response

 {
  data: [
    {
      biography: 'Biography text for expert here.'
    }
  ],
  success: true
}

Code

Update Biography

POST /v2/organization/:corporation/staff/:username/biography

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

description*

string

Content of biography *optional

Response

Code

Last updated

Was this helpful?