Skip to main content
GET
/
api
/
v1
/
misc
/
me
Get current organization
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://blackbox.dasha.ai/api/v1/misc/me', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "orgId": "<string>"
}

Response

Returns organization information successfully

orgId
string
required
Minimum string length: 1