Last updated 1 year ago
This endpoint returns details about a specific organization.
Get user organization detail
Get organization info
organization_id
Successful operation
const response = await fetch('https://api.getdor.com/dtm-api/v1/organizations/{organization_id}', { method: 'GET', headers: { "Authorization": "basic <token>" }, }); const data = await response.json();
{ "data": { "id": "tm_cjeU8qZT1mSUytd6", "name": "Mike's Organization", "vertical_type_name": "Other", "vertical_name": "Automobile dealers", "created_at": "2022-01-01T00:00:00Z" } }