RocketCOMS

Business Account Object

The Business Account object represents the details for a RocketCOMS Business Account, such as the account ID and company information.

Attributes

id

string (UUID)

Business Account ID.

name

string, max length: 255, min length: 0

Business name.

legalName

string, max length: 255, min length: 0

Legal business name.

operatingName

string, max length: 255, min length: 0

Business operating name.

legalId

string, max length: 255, min length: 0

Any legal ID for the business, such as a business registration number.

phoneNumber

string, max length: 20, min length: 9

Business phone number.

email

string

Business email.

description

string, max length: 255, min length: 0

Business description.

website

string, max length: 100, min length: 0

pattern: ^(http:\/\/www\.|https:\/\/www\.|http:\/\/|https:\/\/)?[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?(\/.*)?$

Business website. Must include http:// or https://.

legalEntityType

string, max length: 255, min length: 0

Any internal notes about the type of company the Business Account is for (examples: corporation, trust).

isActive

boolean

Whether the Business Account is active on the RocketCOMS platform.

address

object

Business Account address. For details, see the Address object.

organizationType

string

Any internal notes about the type of organization the Business Account is for (for example: non-profit, school).

status

string, values: ACTIVE, DELETED

Business Account status.

createdAt

string (date-time)

Date and time the Business Account was created.

updatedAt

string (date-time)

Date and time the Business Account was last updated.

Business Account Object

				
					{
  "id": "67b25a5e-f90a-4491-9ee4-291ff290c1fe",
  "name": "ABC Inc.",
  "legalName": "ABC Inc.",
  "operatingName": "ABC Operating",
  "legalId": "ABC 1234",
  "phoneNumber": "+15555551234",
  "email": "abc@business.com",
  "description": ""Consumer electronics",
  "website": "http://www.abc.com",
  "legalEntityType": "Corporation",
  "isActive": true,
  "address": {...},
  "organizationType": "Non-profit",
  "status": "ACTIVE",
  "createdAt": "2022-04-24T16:51:03.419Zg",
  "updatedAt": "2022-04-26T16:51:03.419Z"
}