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>"
}
}
}
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>"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful response
The response is of type object
.