Organizations

Get Organization Details

Returns the full detail record for a single organization, including its child and parent organization relationships. The requested organization must belong to your organization family; requests for organizations outside your family return a 404.

get/organizations/{id}

Path parameters

idinteger required

The unique VOMO identifier for the organization to retrieve.

Response

Returns the full organization record, including its child and parent organization relationships.

Example response

{
  "data": {
    "id": 12345,
    "name": "VOMO Org",
    "slug": "vomo",
    "type": "NPO",
    "description": "A nonprofit dedicated to eliminating food insecurity.",
    "email": "admin@vomo.org",
    "phone": "123-456-7890",
    "website": "https://vomo.org",
    "tax_number": "12-3456789",
    "org_size": 500,
    "background_check_expiration": "1_YEAR",
    "background_check_expiration_mode": "relative",
    "background_check_absolute_expiration": "2025-12-31",
    "invitation_token": "VOMO",
    "address": {
      "lat": 33.214561,
      "lng": -96.614456,
      "country": "United States",
      "locality": "McKinney",
      "timezone": "America/Chicago",
      "postal_code": "75069",
      "country_short": "US",
      "locality_short": "McKinney",
      "formatted_address": "610 Elm St Suite 800, McKinney, TX 75069, USA",
      "postal_code_short": "75069",
      "administrative_area_level_1": "Texas",
      "administrative_area_level_1_short": "TX"
    },
    "groups_moniker": "Group",
    "created_at": "2019-02-01 17:33:39",
    "updated_at": "2019-05-31 19:31:43",
    "show_categories": 1,
    "project_moniker": "Project",
    "campaign_moniker": "Campaign",
    "logo": {
      "id": 99908,
      "type": "LOGO",
      "mediable_id": 12345,
      "mediable_type": "organization",
      "created_at": "2019-03-28 15:37:09",
      "updated_at": "2019-03-28 15:37:14"
    }
  }
}

Changes