GET
/
organizations
/
{id}
TypeScript
import Nuntly from '@nuntly/sdk';

const client = new Nuntly({
  apiKey: 'My API Key',
});

const organization = await client.organizations.retrieve('org_9UTZz2PisZ68YwE3NJu9urQ9');

console.log(organization.org_id);
{
  "data": {
    "org_id": "org_01jh6jk82zjq9deye73h0mzcaq",
    "display_name": "Ray Tomlinson org",
    "status": "active",
    "created_at": "2025-01-09T22:22:41.247Z",
    "modified_at": "2025-01-09T22:22:41.247Z",
    "region": "eu-west-1",
    "kind": "orgnization"
  }
}

Authorizations

Authorization
string
header
required

Bearer HTTP authentication. Allowed headers Authorization: Bearer <API_KEY>

Path Parameters

id
string
required

The organization id previously created

Response

200
application/json

A successful response

The response is of type object.