Manage organization settings
GET /v1/organizations/{orgId}
{ "success": true, "data": { "orgId": "org-123", "name": "My Organization", "authToken": "auth-token-123", "webhookUrl": "https://example.com/webhook" } }
PUT /v1/organizations/{orgId}
{ "name": "Updated Org Name", "webhookUrl": "https://example.com/new-webhook" }
{ "success": true, "data": { "orgId": "org-123", "name": "Updated Org Name", "authToken": "auth-token-123", "webhookUrl": "https://example.com/new-webhook" } }