GET
/
organization
curl --request GET \
  --url https://atoms-api.smallest.ai/api/v1/organization \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "data": {
    "_id": "<string>",
    "name": "<string>",
    "members": [
      {
        "_id": "<string>",
        "userEmail": "<string>"
      }
    ],
    "subscription": {
      "planId": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Successful response

The response is of type object.