Skip to main content
GET
/
v1
/
atlas
/
organizations
List all organizations
const options = {method: 'GET'};

fetch('http://localhost:4010/v1/atlas/organizations', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "success": true,
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "logo": "<string>",
      "metadata": {},
      "deletedAt": "2023-11-07T05:31:56Z",
      "memberCount": 123
    }
  ],
  "meta": {
    "requestId": "<string>",
    "timestamp": "<string>"
  }
}

Response

List of organizations

success
enum<boolean>
required
Available options:
true
data
object[]
required
meta
object
required