## Retrieve organization details `embed.organizations.get(strorganization_id, OrganizationGetParams**kwargs) -> OrganizationV1` **get** `/v1/organizations/{organization_id}` Retrieves the details of an Organization that has previously been created. Supply the unique organization ID that was returned from your previous request, and Straddle will return the corresponding organization information. ### Parameters - `organization_id: str` - `correlation_id: Optional[str]` - `request_id: Optional[str]` ### Returns - `class OrganizationV1: …` - `data: Data` - `id: str` Straddle's unique identifier for the organization. - `created_at: datetime` Timestamp of when the organization was created. - `name: str` The name of the organization. - `updated_at: datetime` Timestamp of the most recent update to the organization. - `external_id: Optional[str]` Unique identifier for the organization in your database, used for cross-referencing between Straddle and your systems. - `metadata: Optional[Dict[str, Optional[str]]]` Up to 20 additional user-defined key-value pairs. Useful for storing additional information about the organization in a structured format. - `meta: ResponseMetadata` Metadata about the API request, including an identifier and timestamp. - `api_request_id: str` Unique identifier for this API request, useful for troubleshooting. - `api_request_timestamp: datetime` Timestamp for this API request, useful for troubleshooting. - `response_type: Literal["object", "array", "error", "none"]` Indicates the structure of the returned content. - "object" means the `data` field contains a single JSON object. - "array" means the `data` field contains an array of objects. - "error" means the `data` field contains an error object with details of the issue. - "none" means no data is returned. - `"object"` - `"array"` - `"error"` - `"none"` ### Example ```python import os from straddle import Straddle client = Straddle( api_key=os.environ.get("STRADDLE_API_KEY"), # This is the default and can be omitted ) organization_v1 = client.embed.organizations.get( organization_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", ) print(organization_v1.data) ``` #### Response ```json { "data": { "id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", "created_at": "2019-12-27T18:11:19.117Z", "name": "name", "updated_at": "2019-12-27T18:11:19.117Z", "external_id": "external_id", "metadata": { "foo": "string" } }, "meta": { "api_request_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", "api_request_timestamp": "2019-12-27T18:11:19.117Z" }, "response_type": "object" } ```