## Organization Details `client.user.organizations.get(stringorganizationId, RequestOptionsoptions?): OrganizationGetResponse` **get** `/user/organizations/{organization_id}` Gets a specific organization the user is associated with. ### Parameters - `organizationId: string` Identifier ### Returns - `OrganizationGetResponse = unknown` ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiEmail: process.env['CLOUDFLARE_EMAIL'], // This is the default and can be omitted apiKey: process.env['CLOUDFLARE_API_KEY'], // This is the default and can be omitted }); const organization = await client.user.organizations.get('023e105f4ecef8ad9ca31a8372d0c353'); console.log(organization); ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "success": true, "result": {} } ```