GET
/
v2
/
user
/
organizations
Get user organization's
curl --request GET \
  --url https://b2b-api.dev-riseworks.io/v2/user/organizations \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "companies": [
      {
        "nanoid": "<string>",
        "avatar": "<string>",
        "name": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Default Response

The response is of type object.