Profile API

Get information about a specific user using this API.

circle-check
circle-exclamation

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

{
    "error": "Something went wrong",
    "code": "<errror code>",
    "request": "<request id>"
}

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 10, it's limited to 100)

offset

String

The amount of organizations to skip (defaults to 0)

Headers

Name
Type
Description

Authorization*

String

Bearer authentication with the access token obtained using OpenID Connect

Last updated