Mirakl Connector SFCC APIs

General Notes

Salesforce Authentication Guide Using HTTP Requests

This guide provides detailed instructions for authenticating with Salesforce using HTTP requests. It includes generating and retrieving the required tokens through various steps and scripts.


Overview of Steps

1. Generate Authorization Code

Description

This step generates an authorization code using PKCE (Proof Key for Code Exchange).

Steps Before Sending the Request

Generate the code_verifier and code_challenge using the following script:

function generateCodeVerifier() {
    return generateRandomString(96);
}

function generateRandomString(length) {
    var text = "";
    var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
    for (var i = 0; i < length; i++) {
        text += possible.charAt(Math.floor(Math.random() * possible.length));
    }
    return text;
}

function generateCodeChallenge(code_verifier) {
    return CryptoJS.SHA256(code_verifier);
}

function base64URL(string) {
    return string.toString(CryptoJS.enc.Base64).replace(/=/g, '').replace(/\+/g, '-').replace(/\//g, '_');
}

var verifier = base64URL(generateCodeVerifier());
var challenge = base64URL(generateCodeChallenge(verifier));

// Store verifier and challenge in your system or application as needed

Request Configuration

  • Method: POST
  • URL:
    https://{your-host}/shopper/auth/v1/organizations/{organization-id}/oauth2/login?client_id={client-id}&channel_id={channel-id}&redirect_uri={redirect-url}&code_challenge={code-challenge}
  • Headers:
    Content-Type: application/x-www-form-urlencoded
  • Authentication: Use Basic Authentication with the user’s login and password.

Steps After Receiving the Response

Extract the authorization code and user session ID (usid) from the response headers or body:

// Example for 303 status with redirect
let location = responseHeaders["Location"].split('?');
let params = location[1].split('&');
let code = params.pop().substring(5);
let usid = params[0].substring(5);

// Save the code and usid as needed for the next steps

2. Exchange Authorization Code for Access Token

Description

This step exchanges the authorization code for an access token.

Steps Before Sending the Request

Ensure the auth_code from the previous step is available.

console.log("Authorization code: " + auth_code);

Request Configuration

  • Method: POST
  • URL:
    https://{your-host}/shopper/auth/v1/organizations/{organization-id}/oauth2/token
  • Headers:
    Content-Type: application/x-www-form-urlencoded
  • Body:
    code={auth-code}&grant_type=authorization_code_pkce&redirect_uri={redirect-url}&code_verifier={code-verifier}&channel_id={channel-id}&client_id={client-id}&usid={usid}

Steps After Receiving the Response

Extract and store the access and refresh tokens from the response.

let jsonBody = JSON.parse(responseBody);
let accessToken = jsonBody.access_token;
let refreshToken = jsonBody.refresh_token;
let customerId = jsonBody.customer_id;
let usid = jsonBody.usid;

// Store these values securely for subsequent requests

3. Use Refresh Token to Obtain New Access Token

Description

This step uses the refresh_token to obtain a new access token.

Request Configuration

  • Method: POST
  • URL:
    https://{your-host}/shopper/auth/v1/organizations/{organization-id}/oauth2/token
  • Headers:
    Content-Type: application/x-www-form-urlencoded
  • Body:
    refresh_token={refresh-token}&grant_type=refresh_token&client_id={client-id}

Steps After Receiving the Response

Extract and store the new tokens from the response.

let jsonBody = JSON.parse(responseBody);
let accessToken = jsonBody.access_token;
let refreshToken = jsonBody.refresh_token;
let customerId = jsonBody.customer_id;
let usid = jsonBody.usid;

// Update stored tokens as needed
Languages
Servers
Commerce Cloud API server
https://{shortCode}.api.commercecloud.salesforce.com/checkout/shopper-baskets/v1/organizations/{organizationId}/
Commerce Cloud API server
https://{shortCode}.api.commercecloud.salesforce.com/customer/shopper-customers/v1/organizations/{organizationId}/
Commerce Cloud API server
https://{shortCode}.api.commercecloud.salesforce.com/checkout/shopper-orders/v1/organizations/{organizationId}/
Commerce Cloud API server
https://{shortCode}.api.commercecloud.salesforce.com/product/shopper-products/v1/organizations/{organizationId}/
Commerce Cloud API server
https://{shortCode}.api.commercecloud.salesforce.com/search/shopper-search/v1/organizations/{organizationId}/
Commerce Cloud API server
https://{shortCode}.api.commercecloud.salesforce.com/custom/marketplace/v1/organizations/{organizationId}/

Shopper Baskets

Operations

Checkout

Operations

getBasketShippingMethods - Get the allowed shipping methods for a basket.

Request

Get the allowed shipping methods for the current basket by making a call to the SH02 API.

Query
c_shipmentIdstringrequired

The identifier of the shipment.

localestringnon-empty

The user locale.

siteIdstringnon-empty

The identifier of the site.

curl -i -X GET \
  'https://mydefaultshortcode.api.commercecloud.salesforce.com/custom/marketplace/v1/organizations/myorganizationid/baskets/shipping-methods?c_shipmentId=string&locale=string&siteId=string'

Responses

OK

Bodyapplication/json
expectedShipmentsArray of objectsrequired

List of expected shipments with available shipping methods.

Response
application/json
{ "expectedShipments": [ {} ] }

getShippingMethodsForShipment - Gets the applicable shipping methods for a certain shipment of a basket.

Request

Gets the applicable shipping methods for a certain shipment of a basket.

Path
basketIdstringrequired

The ID of the basket to be modified.

shipmentIdstringrequired

The ID of the shipment to be modified.

Query
siteIdstringrequired

The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites.

curl -i -X GET \
  'https://mydefaultshortcode.api.commercecloud.salesforce.com/custom/marketplace/v1/organizations/myorganizationid/baskets/{basketId}/shipments/{shipmentId}/shipping-methods?siteId=string'

Responses

Success, the response body contains the applicable shipping methods for a certain shipment of the basket.

Bodyapplication/json
applicableShippingMethodsArray of objects

A list of shipping methods applicable for the shipment.

defaultShippingMethodIdstring

The ID of the default shipping method.

Response
application/json
{ "defaultShippingMethodId": "string", "applicableShippingMethods": [ {} ] }

updateBillingAddressForBasket - Sets the billing address of a basket.

Request

Sets the billing address of a basket.

Path
basketIdstringrequired

The ID of the basket to be modified.

Query
siteIdstringrequired

The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites.

Bodyapplication/jsonrequired

Request body containing the basket to update.

address1string

The first line of the address.

address2string

The second address line.

citystring

The city.

companyNamestring

The company name.

countryCodestring

The ISO Country Code.

firstNamestring

The first name.

fullNamestring

The full name.

idstring

The ID of the address.

jobTitlestring

The job title.

lastNamestring

The last name.

phonestring

The phone number.

postBoxstring

The post office box.

postalCodestring

The postal code.

salutationstring

The salutation.

secondNamestring

The second name.

stateCodestring

The state code.

suffixstring

The suffix.

suitestring

The suite.

titlestring

The title.

curl -i -X PUT \
  'https://mydefaultshortcode.api.commercecloud.salesforce.com/custom/marketplace/v1/organizations/myorganizationid/baskets/{basketId}/billing-address?siteId=string' \
  -H 'Content-Type: application/json' \
  -d '{
    "address1": "string",
    "countryCode": "string",
    "suffix": "string",
    "jobTitle": "string",
    "lastName": "string",
    "fullName": "string",
    "companyName": "string",
    "id": "string",
    "title": "string",
    "firstName": "string",
    "stateCode": "string",
    "postBox": "string",
    "secondName": "string",
    "salutation": "string",
    "phone": "string",
    "suite": "string",
    "city": "string",
    "address2": "string",
    "postalCode": "string"
  }'

Responses

Success, the response body contains the basket with the added billing address.

Bodyapplication/json
adjustedMerchandizeTotalTaxnumber(double)

The total tax on products in the shipment, including adjustments.

Example: 30
adjustedShippingTotalTaxnumber(double)

The total tax on shipping charges in the shipment, including adjustments.

Example: 0.8
agentBasketboolean

Indicates if the basket was created by an agent.

Example: false
basketIdstring

The unique identifier for the basket.

Example: "a10ff320829cb0eef93ca5310a"
billingAddressobject

The billing address.

channelTypestring

The sales channel.

Enum"storefront""callcenter""marketplace""dss""store""pinterest""twitter""facebookads""subscriptions""onlinereservation"
Example: "storefront"
couponItemsArray of objects

The coupon items.

creationDatestring(date-time)

The timestamp when the basket was created.

Example: "2019-10-17T08:29:55.34Z"
currencystring

The ISO 4217 currency code.

Example: "USD"
customerInfoobject

The customer information.

lastModifiedstring(date-time)

The timestamp when the basket was last modified.

Example: "2019-10-17T08:29:55.698Z"
merchandizeTotalTaxnumber(double)

The total tax for merchandise.

Example: 30
notesobject

Additional notes for the basket.

orderTotalnumber(double)

The total price, including products, shipping, and tax.

Example: 646.76
paymentInstrumentsArray of objects

The payment instruments.

productItemsArray of objects

List of the product items of the basket.

productSubTotalnumber(double)

The subtotal for all products.

Example: 599.97
productTotalnumber(double)

The total price of all products.

Example: 599.97
shipmentsArray of objects

List of the shipment items of the basket.

shippingItemsArray of objects

The shipping items in the basket.

shippingTotalnumber(double)

The total shipping charges for the basket.

Example: 15.99
shippingTotalTaxnumber(double)

The total tax on shipping charges for the basket.

Example: 0.8
taxTotalnumber(double)

The total tax amount for the basket.

Example: 30.8
taxationstring

The taxation policy for the basket.

Enum"gross""net"
Example: "net"
Response
application/json
{ "adjustedMerchandizeTotalTax": 30, "adjustedShippingTotalTax": 0.8, "agentBasket": false, "basketId": "a10ff320829cb0eef93ca5310a", "billingAddress": { "address1": "104 Presidential Way", "city": "Woburn", "countryCode": "US", "firstName": "Stephanie", "fullName": "Stephanie Miller", "id": "bfea663fd3de75d5be3ec02702", "lastName": "Miller", "postalCode": "01801", "stateCode": "MA" }, "channelType": "storefront", "couponItems": [ {} ], "creationDate": "2019-10-17T08:29:55.34Z", "currency": "USD", "customerInfo": { "customerId": "beQeANXJNsd0xcINsB6cSrobQa", "email": "shopper@salesforce-test.com" }, "lastModified": "2019-10-17T08:29:55.698Z", "merchandizeTotalTax": 30, "notes": "object", "orderTotal": 646.76, "paymentInstruments": [ {} ], "productItems": [ {} ], "productSubTotal": 599.97, "productTotal": 599.97, "shipments": [ {} ], "shippingItems": [ {} ], "shippingTotal": 15.99, "shippingTotalTax": 0.8, "taxation": "net", "taxTotal": 30.8 }

updateShippingMethodForShipment - Sets a shipping method for a specific shipment of a basket.

Request

Sets a shipping method for a specific shipment of a basket.

Path
basketIdstringrequired

The ID of the basket to be modified.

shipmentIdstringrequired

The ID of the shipment to be modified.

Query
siteIdstringrequired

The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites.

Bodyapplication/jsonrequired

Request body containing marketplace data.

c_marketplaceDataArray of objects

Marketplace-specific data.

idstring

Identifier for the marketplace data.

curl -i -X PUT \
  'https://mydefaultshortcode.api.commercecloud.salesforce.com/custom/marketplace/v1/organizations/myorganizationid/baskets/{basketId}/shipments/{shipmentId}/shipping-method?siteId=string' \
  -H 'Content-Type: application/json' \
  -d '{
    "id": "string",
    "c_marketplaceData": [
      {
        "offers": [
          {
            "id": "string"
          }
        ],
        "selectedShippingMethod": "string"
      }
    ]
  }'

Responses

Success, the response body contains the basket with the added shipping method.

Bodyapplication/json
shipmentsArray of objects

List of the shipment items of the basket.

Response
application/json
{ "shipments": [ {} ] }

Shopper Customers

Operations

Shopper Orders

Operations

Products and Offers

Operations

Shop

Operations