Info

Info Organization

Get the org specific information

POST/organization/info
Authorization
Body
organizations*Organizations
Response

Successful Response

Body
any
Request
const response = await fetch('/organization/info', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      "organizations": [
        "text"
      ]
    }),
});
const data = await response.json();
Response
{
  "detail": [
    {
      "loc": [
        "text"
      ],
      "msg": "text",
      "type": "text"
    }
  ]
}