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

Update Organization

Update an Organization

Request Details

path Parameters

FieldTypeRequiredDescription
id
string
YesThe ID of the organization to update

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

PATCH
/v1/organizations/me
Sample Request

Headers:

{
  "Content-Type": "application/json",
  "Authorization": "Bearer <YOUR_API_KEY>"
}

Path Parameters:

{
  "id": "string (required) - The ID of the organization to update"
}

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 (200)
{
  "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"
    }
  }
}