Profile API
Get information about a specific user using this API.
If you use the JavaScript SDK you could use the ProfileApi
abstraction instead.
You need the profile:read
scope to access this API.
User Profile
GET
https://identity.vulos.io/api/v1/profile/:id
Get the user's public profile information.
Path Parameters
Name | Type | Description |
---|---|---|
id* | String | The user's ID |
Headers
Name | Type | Description |
---|---|---|
Authorization* | String | Bearer authentication with the access token obtained using OpenID Connect |
Organization Profile
GET
https://identity.vulos.io/api/v1/profile/organization/:id
Get the organization's public profile information.
Path Parameters
Name | Type | Description |
---|---|---|
id* | String | The ID of the organization |
Headers
Name | Type | Description |
---|---|---|
Authorization* | String | Bearer authentication with the access token obtained using OpenID Connect |
Search Organizations
GET
https://identity.vulos.io/api/v1/profile/organization/search/:search/:amount/:offset
Search for an organization by name.
Path Parameters
Name | Type | Description |
---|---|---|
search* | String | The keyword to find in the organization's name |
amount | String | The maximal amount of organizations to return (defaults to |
offset | String | The amount of organizations to skip (defaults to |
Headers
Name | Type | Description |
---|---|---|
Authorization* | String | Bearer authentication with the access token obtained using OpenID Connect |
Last updated