List organizations

This will return a list of all organizations the authenticated identity has access to.

GET
https://api.katapult.io/core/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
        sub_domain: String
        infrastructure_domain: String
        created_at: Unix Timestamp
        suspended: Boolean
        managed: Boolean
    } ]
}