Organization

Get Organization Info

Introduction

The featureOS Organizations API allows you to retrieve information about your organization. You can also retrieve organization's associated data.

GET https://api.featureos.app/api/v3/organizations/info

Headers

Parameter Default Description
API-KEY-Generate from organization settings on the admin dashboard.

Sample response

{
  "success": true,
  "organization": {
    "subdomain": "feedback",
    "name": "featureOS",
    "description": "",
    "home_page": "http://feedback.featureos.app/",
    "avatar": null,
    "brand_colors": {
      "primary": "#4353FF",
      "primary_light": "#C8C8FF",
      "primary_dark": "#3947D9"
    }
  },
  "form": {
    "description": "Have something to say? Join the conversation.",
    "submit_button_text": "New Post"
  }
}
Previous
Understanding Organizations API