CustomerBASE API

Create a new organization

Creates an organization in the system if it doesn't already exist based on website, custom ID, or LinkedIn URL

post/orgs/v1/organization

Request body

customIdstring

Custom ID provided by the user Example: 12345

icpFitboolean

Indicates if the organization is an ICP (Ideal Customer Profile) fit Example: true

leadSourcestring

Lead source of the organization Example: Web Search

linkedinUrlstring

Organization's LinkedIn profile URL Example: https://linkedin.com/company/openline

namestring

Organization's name Example: Openline

relationshipstring

Relationship status of the organization Example: customer

websitestring

Organization's website URL Example: https://openline.com

Response

Organization created successfully

idstring

ID is the unique identifier of the created organization Example: 1234567890

messagestring

Message provides additional information regarding the creation process Example: Organization created successfully

partialSuccessboolean

PartialSuccess indicates whether the creation process encountered partial success (e.g., when some fields failed to process) Example: false

statusstring

Status indicates the status of the creation process (e.g., "success" or "partial_success") Example: success

Example response

{
  "id": "1234567890",
  "message": "Organization created successfully",
  "status": "success"
}

Changes