# Get Organization Retrieve details of a specific organization by its ID. Endpoint: GET /management/organizations/{id} Version: 1.0 Security: bearerAuth ## Header parameters: - `x-fingerprint-id` (string, required) Unique device or session fingerprint identifier used for security and fraud prevention. ## Path parameters: - `id` (string, required) The unique identifier of the organization. ## Response 200 fields (application/json): - `statusCode` (integer) Example: 200 - `data` (object) - `data.id` (string) Unique identifier for the organization. - `data.createdAt` (string) When the organization was created. - `data.name` (string) Name of the organization. - `data.document` (object) - `data.document.type` (string) Enum: "CPF", "CNPJ" - `data.document.number` (string) - `data.collaborator` (array) - `data.collaborator.id` (string) - `data.collaborator.collaboratorType` (array) - `data.billing` (object) - `data.billing.address` (object) - `data.billing.address.zipCode` (string) - `data.billing.address.street` (string) - `data.billing.address.complement` (string) - `data.billing.address.neighborhood` (string) - `data.billing.address.city` (string) - `data.billing.address.state` (string) - `data.billing.contact` (object) - `data.billing.contact.email` (string) - `data.billing.contact.phone` (object) - `data.billing.contact.phone.areaCode` (string) - `data.billing.contact.phone.ddd` (string) - `data.billing.contact.phone.isMobile` (boolean) - `data.billing.contact.whatsApp` (object) - `data.user` (object) - `data.user.name` (string) - `data.user.birthDate` (string) - `data.company` (object) - `data.forecastIncome` (object) - `data.forecastIncome.range` (string) Expected annual income range. Enum: "none", "less-than-10000", "10000-to-50000", "50000-to-100000", "100000-to-500000", "more-than-500000" ## Response 400 fields (application/json): - `message` (string) Invalid param: [] Example: "Invalid param: []" - `error` (string) Bad Request Example: "Bad Request" - `statusCode` (integer) 400 Example: 400 ## Response 401 fields (application/json): - `message` (string) Invalid field Example: "Unauthorized" - `error` (string) Unauthorized Example: "Unauthorized" - `statusCode` (integer) 401 Example: 401 ## Response 403 fields (application/json): - `message` (string) Forbidden resource Example: "Forbidden resource" - `error` (string) Forbidden Example: "Forbidden" - `statusCode` (integer) 403 Example: 403 ## Response 500 fields (application/json): - `message` (string) Internal server error Example: "Internal server error" - `error` (string) Internal Server Error Example: "Internal Server Error" - `statusCode` (integer) 500 Example: 500