Skip to main content
GET
/
api
/
v1
/
misc
/
me
Get current organization
const options = {method: 'GET'};

fetch('https://blackbox.dasha.ai/api/v1/misc/me', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
curl --request GET \
  --url https://blackbox.dasha.ai/api/v1/misc/me
import requests

url = "https://blackbox.dasha.ai/api/v1/misc/me"

response = requests.get(url)

print(response.text)
{
  "orgId": "<string>"
}
{
  "type": "<string>",
  "title": "<string>",
  "status": 123,
  "detail": "<string>",
  "instance": "<string>"
}

Response

Returns organization information successfully

orgId
string
required
Minimum string length: 1