FlashApply API Docs
Need help?
Back to Organization & People Management

Create Organization

Creates a new organization. This is typically done during signup.

Request Details

body Parameters

FieldTypeRequiredDescription
name
string
YesThe organization name
email
string
YesThe organization email address
phone
string
YesThe organization phone number
website
string
YesThe organization website URL
locations
array
OrganizationLocation
YesList of physical or operational locations for the organization
settings
object
OrganizationSettings
NoOrganization specific settings
admin
object
AdminMember
YesPrimary organization holder or main contact

Sample Request & Response

POST
/v1/organizations
Sample Request

Headers:

{
  "Content-Type": "application/json"
}

Body:

{
  "name": "example_string",
  "email": "example_string",
  "phone": "example_string",
  "website": "example_string",
  "locations": [
    {
      "id": "example_string",
      "name": "example_string",
      "about": "example_string",
      "country": "example_string",
      "region": "example_string",
      "city": "example_string"
    }
  ],
  "settings": {
    "logoUrl": "example_string",
    "webhook": {
      "enabled": true,
      "url": "example_string",
      "events": [
        "resume.parsed"
      ]
    }
  },
  "admin": {
    "firstName": "example_string",
    "lastName": "example_string",
    "email": "example_string",
    "phone": "example_string",
    "settings": {
      "password": "example_string",
      "profilePictureUrl": "example_string"
    }
  }
}
Sample Response (201)
{
  "id": "example_string",
  "name": "example_string",
  "email": "example_string",
  "phone": "example_string",
  "approved": true,
  "website": "example_string",
  "createdAt": "2025-07-26T12:00:00Z",
  "updatedAt": "2025-07-26T12:00:00Z",
  "domain": {
    "name": "example_string",
    "verified": true,
    "requestedAt": "2025-07-26T12:00:00Z"
  },
  "locations": [
    {
      "id": "example_string",
      "name": "example_string",
      "about": "example_string",
      "country": "example_string",
      "region": "example_string",
      "city": "example_string"
    }
  ],
  "settings": {
    "logoUrl": "example_string",
    "webhook": {
      "enabled": true,
      "url": "example_string",
      "events": [
        "resume.parsed"
      ]
    }
  },
  "admin": {
    "firstName": "example_string",
    "lastName": "example_string",
    "email": "example_string",
    "phone": "example_string",
    "settings": {
      "profilePictureUrl": "example_string"
    }
  }
}