Get Profile
GET/profile
Fetches the individual information of the logged in user to populate the Profile page.
Responses
- 200
Returns user profile
- application/json
- Schema
- Example (from schema)
Schema
first_name string
last_name string
email string
roles string[]
organization_name string
{
"first_name": "Jane",
"last_name": "Doe",
"email": "[email protected]",
"roles": [
"developer"
],
"organization_name": "Stellar Aid"
}
Loading...