RocketCOMS

Recipient Object

The Recipient object represents an individual who receives messages from a RocketCOMS campaign.

Attributes

id

string

Unique ID assigned to the recipient in RocketCOMS.

businessAccountId

string

ID of the Business Account that the recipient belongs to.

firstName

string

Recipient’s first name.

lastName

string

Recipient’s last name.

email

string

Recipient’s email address.

mobileNumber  

string

Recipient’s mobile number in E.164 format:

[+][country code][phone number including area code]

Example: +14151234

address

object

Recipient’s address.

addressType  

string enum, values: Workplace, Home

Type of address.

streetLine1  

string, max length: 255

First line of the street address.

zipCode  

string, max length: 10

Zip code or postal code.

countryCode  

string, max length: 10

Country code.

stateCode  

string, max length: 10

State, province, or territory.

cityName  

string, max length: 50

City.

createdAt

string (date-time)

Date and time the recipient was created.

updatedAt

string (date-time)

Date and time the recipient was last updated.

Recipient Object

				
					{
  "id": "6a017f06-83a3-44b7-be6f-5e5cae4a9ed7",
  "businessAccountId": "8th32z87-3845-9810-v7gu-1f827g98swk3",
  "firstName": "John",
  "lastName": "Smith",
  "email": "jsmith@abc.com",
  "mobileNumber": "4161234567",
  "address": {
    "addressType": "Home",
    "streetLine1": "200 Queen St",
    "zipCode": "10001",
    "countryCode": "US",
    "stateCode": "NY",
    "cityName": "New York"
  },
  "createdAt": "2023-10-23T00:42:50.311Z",
  "updatedAt": "2023-10-30T00:42:50.311Z"
}