POST
/
v1
/
members
curl --request POST \
  --url https://vanilla-dev02-loyalty.fabric.zone/api/v1/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "firstName": "John",
  "middleName": "Duke",
  "lastName": "Wayne",
  "suffix": "<string>",
  "gender": "Male",
  "birthDate": "1990-11-16",
  "emailAddress": "user@abc.com",
  "phoneNumber": "923331234567",
  "addressLine1": "10400 NE 4th St",
  "addressLine2": "Suite 505",
  "addressLine3": "",
  "city": "Austin",
  "region": "Texas",
  "postalCode": "98004",
  "country": "United States",
  "nationality": "",
  "maritalStatus": "Single",
  "prefix": "Mr",
  "redemptionChoice": "Auto",
  "redemptionThreshold": 10,
  "entityReference": "BOUNTEE_CLUB",
  "enrollmentTimestamp": "2021-01-25",
  "clubReference": "BLOCK_A",
  "enrollReasonCode": "1234",
  "enrollReasonNote": "As guest member",
  "tierReference": "Silver",
  "customAttributes": {},
  "sourceExternalReference": "example.com",
  "channelExternalReference": "WEB"
}'
{
  "message": "Created",
  "errors": {},
  "data": {
    "accounts": [
      {
        "accountStatus": "Enabled",
        "clubReference": "abc_club",
        "clubTitle": "ABC Club",
        "customAttributes": {
          "memberSinceDate": "2021-07-26",
          "enrolledAtCenter": "Liberty Store",
          "profileCompleted": false
        },
        "enrollmentEntity": "demo",
        "enrollmentStatus": true,
        "entityReference": "entity_level_1",
        "loyaltyNumber": "10000147371",
        "paidStatus": false,
        "profileId": "f90a1da5-c072-48b7-a9ea-eb35c5dd506b",
        "redemptionChoice": "Auto",
        "redemptionThreshold": 10,
        "tierExpiryDate": "2022-09-17T14:26:32.192148+00:00",
        "tierExternalReference": "GLD",
        "tierId": 4185,
        "tierTitle": "ClubTier",
        "updatedAt": "2021-11-01 12:15:53.831401+00:00"
      }
    ],
    "addressLine1": "10400 NE 4th St",
    "addressLine2": "Suite 505",
    "addressLine3": "",
    "birthdate": "1990-11-16",
    "channelExternalReference": "Web",
    "city": "Austin",
    "country": "US",
    "emailAddress": "user@abc.com",
    "enrollReasonCode": "1234",
    "enrollReasonNote": "Guest",
    "enrollmentTimestamp": "2021-09-14T11:32:55.508949Z",
    "firstName": "John",
    "fullCountry": "United States",
    "fullRegion": "Texas",
    "gender": "Male",
    "lastName": "Wayne",
    "maritalStatus": "None",
    "middleName": "Duke",
    "nationality": "",
    "phoneNumber": "923331234567",
    "postalCode": "98004",
    "prefix": "Mr",
    "region": "TX",
    "sourceExternalReference": "www.abcdemo.com",
    "suffix": "<string>"
  },
  "status": 201
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Member details with contact information

firstName
string
required

First name of member

Required string length: 1 - 100
Example:

"John"

lastName
string
required

Last name of member

Required string length: 1 - 100
Example:

"Wayne"

emailAddress
string
required

Email address of the member

Required string length: 1 - 254
Example:

"user@abc.com"

phoneNumber
string
required

Phone number of member (without space or dash).

Required string length: 1 - 16
Example:

"923331234567"

entityReference
string
required

Name or ID of store (or entity) where the member is enrolled.

Minimum length: 1
Example:

"BOUNTEE_CLUB"

clubReference
string
required

Club name or ID where the member is enrolled

Minimum length: 1
Example:

"BLOCK_A"

middleName
string

Middle name of member

Maximum length: 100
Example:

"Duke"

suffix
string | null

Suffix of the member name, if any.

gender
enum<string>

Gender of member

Available options:
None,
Male,
Female,
Other
Example:

"Male"

birthDate
string

Date of birth of member

Example:

"1990-11-16"

addressLine1
string | null

Line 1 of address

Maximum length: 500
Example:

"10400 NE 4th St"

addressLine2
string | null

Line 2 of address

Maximum length: 500
Example:

"Suite 505"

addressLine3
string | null

Additional line for directional information

Maximum length: 500
Example:

""

city
string

City name of the address.

Maximum length: 50
Example:

"Austin"

region
string

State name of address

Maximum length: 150
Example:

"Texas"

postalCode
string

Zip code of address

Example:

"98004"

country
string

Country name

Minimum length: 1
Example:

"United States"

nationality
string

Nationality of member

Example:

""

maritalStatus
enum<string>

Marital status of member

Available options:
None,
Single,
Married,
Divorced,
Widowed,
Separated
Example:

"Single"

prefix
enum<string>

Prefix (if appliable) of member name.

Available options:
None,
Mr,
Mrs,
Ms
Example:

"Mr"

redemptionChoice
enum<string> | null

Redemption choices are Bank and Auto. When the choice is 'auto,' the points are automatically converted to rewards. When the choice is 'bank,' the points are converted to rewards at the member’s request.

Available options:
Bank,
Auto
Example:

"Auto"

redemptionThreshold
string | null

Threshold value (configurable) to redeem reward.

Example:

10

enrollmentTimestamp
string | null

Date of member enrollment

Example:

"2021-01-25"

enrollReasonCode
string | null

Reason code for enrollment

Maximum length: 30
Example:

"1234"

enrollReasonNote
string | null

Enrollment reason

Maximum length: 300
Example:

"As guest member"

tierReference
string | null

Tiers are always setup at the club level and a number of tiers can be created. Tiers are categorized as Free (Predefined names are Bronze, Silver, Gold) and Paid (Example - Pro). <br /> Note: Tier names and the rules to move up and down the tiers are configurable. In addition, points, rewards, and tier expiration can be setup at the tier level.

Example:

"Silver"

customAttributes
object | null

Inputs from the store (if applicable) and stored without validation.

sourceExternalReference
string | null

Company website used for member enrollmen

Maximum length: 100
Example:

"example.com"

channelExternalReference
string | null

Sales channel

Maximum length: 100
Example:

"WEB"

Response

201
application/json
Created

Member details with current status

message
string
default:Exception message

Message corresponding to status

Minimum length: 1
Example:

"Created"

errors
object

A dictionary of lists with different number of errors or exceptions.

Example:
{}
data
object

Member details

status
integer

Request status

Example:

201