Skip to main content
GET
/
organizations
/
{id}
Get organization
curl --request GET \
  --url https://api.surefeedback.com/api/v1/organizations/{id} \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "id": "660e8400-e29b-41d4-a716-446655440001",
    "name": "Acme Corp",
    "owner_id": "550e8400-e29b-41d4-a716-446655440000"
  }
}
Returns the details of a specific organization.
Requires authentication. The user must be a member of the organization.

Path parameters

id
string
required
UUID of the organization.
{
  "success": true,
  "data": {
    "id": "660e8400-e29b-41d4-a716-446655440001",
    "name": "Acme Corp",
    "owner_id": "550e8400-e29b-41d4-a716-446655440000"
  }
}