Skip to main content
POST
/
organizations
Create organization
curl --request POST \
  --url https://dashboard.hologram.io/api/1/organizations \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "New Org",
  "ccemails": "<string>",
  "invoice_text": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": 2345,
    "name": "Smart Things LLC",
    "ownerid": 1234,
    "is_personal": 0,
    "ccemails": "finance@example.com",
    "preflight_timeout_in_days": 365,
    "users": [
      {
        "id": 1234,
        "email": "holly.graham@example.com",
        "first": "Holly",
        "last": "Graham",
        "permissions": [
          "billing",
          "activation",
          "changeplan",
          "sbconfig",
          "sbtunnel",
          "deactivate",
          "org_management"
        ]
      }
    ],
    "pending": [
      {
        "email": "newuser@example.com",
        "inviteid": 456
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key. You can find your API key on the Hologram Dashboard under Account Settings.

Body

application/json
name
string

Name of the new organization

Example:

"New Org"

ccemails
string

Comma-separated list of email addresses to CC on billing communications

invoice_text
string

Custom text to include on invoices

Response

OK

success
boolean

Indicates whether the request was successful.

Example:

true

data
object