List user organizations

Returns a list of all organizations for the user.

GET
https://identity.krystal.io/api/v1/organizations

If successful, this endpoint will return a 200 OK status.

Scopes

One of the following scopes are required to use this endpoint.

Returned Object

When the request is successful, you can expect an object matching the specification below to be returned.

{
    organizations: [ Organization {
        id: String
        name: String
        address1: String?
        address2: String?
        address3: String?
        address4: String?
        postcode: String?
        time_zone: String
        vat_number: String?
        owner_ids: [ String ]
    } ]
}