Sales Profile
Retrieve the sales profile details for the specified merchant.
The merchant's unique identification number.
Returns a Sales Profile successfully.
If merchant number is null or empty.
Sales Profile not found.
Error occurred retrieving data.
GET /api/demographics/v2/SalesProfiles/{merchantNumber} HTTP/1.1
Host:
Accept: */*
{
"usesFulfillmentHouse": "true",
"offersNegativeOptionBilling": "true",
"fulfillmentHouseAddress": {
"line1": "1011 NORTHWEST AVE",
"line2": "APT 223",
"line3": "Doe",
"city": "text",
"countryCode": "840",
"stateCode": "MO",
"zip": "Doe"
},
"fulfillmentHousePhone": {
"areaCode": "313",
"phoneNumber": "3334444",
"extension": "ext. 5",
"phoneTypeCodeID": "3"
},
"vendorName": "Example Inc.",
"dateOfIncorporation": "2020-11-30T00:00:00",
"useExtraCnpValidation": "true",
"isECommerce": "true",
"mccCode": "5812",
"cardPresentPercentage": "50",
"returnRefundPolicy": "Refunds are available within 90 days.",
"productsSold": "Food and beverages.",
"previouslyAcceptedPaymentCards": "true",
"previousProcessorId": "10",
"previouslyTerminatedOrIdentifiedByRiskMonitoring": "true",
"reasonPreviouslyTerminatedOrIdentifiedByRisk": "Stolen identity",
"currentlyOpenForBusiness": "true",
"annualVolume": "550000",
"averageTicket": "50.12",
"highTicket": "575.00",
"ownsProduct": "true",
"ordersProduct": "false",
"sellsFirearms": "false",
"cbdSalesTypeID": "1",
"salesProfileCBD": {
"annualCBDRevenuePercentage": "35",
"cbdProductInventoryPercentage": "75",
"salesProfileCBDCategory": "1",
"cbdCategoryID": "text"
},
"sellsFirearmAccessories": "false",
"futureDeliveryTypeID": "1",
"otherDeliveryType": "Stolen identity",
"otherDeliveryTypeInDays": 5,
"futureDeliveryPercentage": "75",
"fireArmsLicense": "199888776Y5555",
"cardBrands": [
1,
2,
3,
4
],
"ebtNumber": "1999991",
"amexMID": "1999991"
}Update the sales profile details of the merchant.
The merchant's unique identification number.
Indicates whether a vendor handles accepting, shipping, or fulfilling merchant products, or billing merchant customers. Required if the application is E-Comm or if it does more than 30% Card Not Present; otherwise can be null. Even if needed and not provided via API, a MOTO questionnaire will be collected as part of the underwriting process.
trueIndicates whether the vendor offers negative option billing. Required if the application is E-Comm or if it does more than 30% Card Not Present; otherwise can be null. Even if needed and not provided via API, a MOTO questionnaire will be collected as part of the underwriting process.
trueName of the vendor associated with a merchant.
Example Inc.Date of incorporation of the merchant. Format: yyyy-mm-ddThh:mm:ss or yyyy-mm-dd. However, hours, minutes, and seconds will be omitted.
2020-11-30T00:00:00Indicates whether DateOfIncorporation is required when merchant is E-Commerce or >30% Card Not Present.
trueIndicates whether the business is entirely online (E-Commerce).
trueIndicates the 4-digit Merchant Category Code (MCC) used to classify merchants and businesses by the type of goods or services provided.
5812The percentage of the merchant's transactions classified as card present.
50Indicates the merchant's policy regarding returns and refunds.
Refunds are available within 90 days.A description of the products sold by the merchant.
Food and beverages.Indicates whether the merchant previously accepted card payments.
trueIdentifier of the previous payment processor. Required if the merchant previously accepted card payments. The value must be in range of [1, 2147483647].
10trueStolen identityIndicates whether the merchant is currently open for business.
trueThe annual gross volume of sales done by the merchant. If the merchant has been open for less than 12 months, the projected annual gross volume of sales.
550000The average volume of a transaction for the merchant.
50.12The high volume of a transaction for the merchant.
575.00Indicates whether a merchant owns the products that they sell.
trueIndicates whether a merchant orders the products that they sell.
falseIndicates whether a merchant sells firearms.
falseIndicates whether the merchant sells CBD or CBD based products. Note: This field has been deprecated in favor of the CBDSalesTypeId field and should no longer be used.
trueIndicate merchant participation in the Xplor Pay's CBD Program. 1 - CBD Seller 2 - CBD Supplier 3 - None If this value is omitted, the CBDSalesTypeID is assumed to be None.
1Indicates whether a merchant sells firearms accessories.
falseIndicates typical delivery range for post-purchase products. Required if FutureDeliveryPercentage is greater than 0. Allowed values: 1 - Products are delivered within 1-7 days 2 - Products are delivered between 7-14 days 3 - Products are delivered at later time Retrieve allowed values programmatically using endpoint GET /api/demographics/v1.0/References/FutureDeliveryTypes
1Additional information once products are delivered. Required when FutureDeliveryTypeId is 3.
Stolen identityA numeric version of OtherDeliveryType. (Note: Currently in development and the field OtherDeliveryType should be used in lieu of this.)
5The percentage of products delivered after the time of purchase.
75The Federal Firearms License (FFL) number assigned to a merchant by the U.S. Bureau of Alcohol, Tobacco, Firearms and Explosives. A 15 digit number containing 14 numbers and 1 letter. Required when a SellsFirearms is true. Can be left null, otherwise.
199888776Y5555The Electronics Benefit Transfer (EBT) number assigned to a merchant by the U.S. Department of Agriculture. Typically a 7 digit number. Required if CardBrands includes 6 (EBT); otherwise can be null.
1999991Number assigned to participants in Amex ESA program. Required if cardBrands includes 7 indicating that the merchant accepts Amex ESA; otherwise can be null.
1999991Updates a Sales Profile successfully.
If merchant number is null or empty, or data is invalid.
Resource not found exception.
Error occurred saving data.
PUT /api/demographics/v2/SalesProfiles/{merchantNumber} HTTP/1.1
Host:
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 1385
{
"usesFulfillmentHouse": "true",
"offersNegativeOptionBilling": "true",
"fulfillmentHouseAddress": {
"line1": "1011 NORTHWEST AVE",
"line2": "APT 223",
"line3": "Doe",
"city": "text",
"countryCode": "840",
"stateCode": "MO",
"zip": "Doe"
},
"fulfillmentHousePhone": {
"areaCode": "313",
"phoneNumber": "3334444",
"extension": "ext. 5",
"phoneTypeCodeID": "3"
},
"vendorName": "Example Inc.",
"dateOfIncorporation": "2020-11-30T00:00:00",
"useExtraCnpValidation": "true",
"isECommerce": "true",
"mccCode": "5812",
"cardPresentPercentage": "50",
"returnRefundPolicy": "Refunds are available within 90 days.",
"productsSold": "Food and beverages.",
"previouslyAcceptedPaymentCards": "true",
"previousProcessorId": "10",
"previouslyTerminatedOrIdentifiedByRiskMonitoring": "true",
"reasonPreviouslyTerminatedOrIdentifiedByRisk": "Stolen identity",
"currentlyOpenForBusiness": "true",
"annualVolume": "550000",
"averageTicket": "50.12",
"highTicket": "575.00",
"ownsProduct": "true",
"ordersProduct": "false",
"sellsFirearms": "false",
"cbdSalesTypeID": "1",
"salesProfileCBD": {
"annualCBDRevenuePercentage": "35",
"cbdProductInventoryPercentage": "75",
"salesProfileCBDCategory": "1",
"cbdCategoryID": "text"
},
"sellsFirearmAccessories": "false",
"futureDeliveryTypeID": "1",
"otherDeliveryType": "Stolen identity",
"otherDeliveryTypeInDays": 5,
"futureDeliveryPercentage": "75",
"fireArmsLicense": "199888776Y5555",
"cardBrands": [
1,
2,
3,
4
],
"ebtNumber": "1999991",
"amexMID": "1999991"
}{
"usesFulfillmentHouse": "true",
"offersNegativeOptionBilling": "true",
"fulfillmentHouseAddress": {
"line1": "1011 NORTHWEST AVE",
"line2": "APT 223",
"line3": "Doe",
"city": "text",
"countryCode": "840",
"stateCode": "MO",
"zip": "Doe"
},
"fulfillmentHousePhone": {
"areaCode": "313",
"phoneNumber": "3334444",
"extension": "ext. 5",
"phoneTypeCodeID": "3"
},
"vendorName": "Example Inc.",
"dateOfIncorporation": "2020-11-30T00:00:00",
"useExtraCnpValidation": "true",
"isECommerce": "true",
"mccCode": "5812",
"cardPresentPercentage": "50",
"returnRefundPolicy": "Refunds are available within 90 days.",
"productsSold": "Food and beverages.",
"previouslyAcceptedPaymentCards": "true",
"previousProcessorId": "10",
"previouslyTerminatedOrIdentifiedByRiskMonitoring": "true",
"reasonPreviouslyTerminatedOrIdentifiedByRisk": "Stolen identity",
"currentlyOpenForBusiness": "true",
"annualVolume": "550000",
"averageTicket": "50.12",
"highTicket": "575.00",
"ownsProduct": "true",
"ordersProduct": "false",
"sellsFirearms": "false",
"cbdSalesTypeID": "1",
"salesProfileCBD": {
"annualCBDRevenuePercentage": "35",
"cbdProductInventoryPercentage": "75",
"salesProfileCBDCategory": "1",
"cbdCategoryID": "text"
},
"sellsFirearmAccessories": "false",
"futureDeliveryTypeID": "1",
"otherDeliveryType": "Stolen identity",
"otherDeliveryTypeInDays": 5,
"futureDeliveryPercentage": "75",
"fireArmsLicense": "199888776Y5555",
"cardBrands": [
1,
2,
3,
4
],
"ebtNumber": "1999991",
"amexMID": "1999991"
}Was this helpful?

