项目作者: MarketingThibs

项目描述 :
Performing HTTP POST in SSJS within an email, cloud page or script activity
高级语言:
项目地址: git://github.com/MarketingThibs/ssjs-http-post-in-sfmc.git
创建时间: 2019-11-25T17:27:12Z
项目社区:https://github.com/MarketingThibs/ssjs-http-post-in-sfmc

开源协议:MIT License

下载


SSJS HTTP POST IN SFMC

On Cloud Pages or in emails (using AMPscript) you may want to trigger a journey entry from a landing page, or script activity using Marketing Cloud REST API. Here is an example to request the authentification token that you will need to be authorized to perfom APIs calls.

Generating Client Id and Secret

In marketing Cloud :

  1. Go to setup > Apps > Installed Packages
  2. Click on new to create a new package. Name it and enter a description
  3. Once created click on Add component
    add component
  4. Le’ts create an API Integration, pick Server-to-Server for instance
  5. Select the scope of your integration

:bulb: In addition of the Client Id and Client Secret, you will find under the REST Base URI section, your custom URL that you’ll use to for posting data.

SSJS Request Token

DEFINITION

Ordinal Type Description
1 string Required Destination URL for the HTTP POST request
2 string Required Value to pass for the Content-Type header
3 string Required POST request content
4 string Required Array of header names included in the request

For the given call var result = HTTP.Post(url, contentType, payload, headerNames, headerValues);:

  • URL : Request Token URL
  • ContentType : is application/json type
  • Payload : will contain your client id and secret

EXAMPLE REQUEST TOKEN

  1. <script runat="server">
  2. Platform.Load("Core", "1.1.1");
  3. try {
  4. var url = 'https://{YourCustomURI}.auth.marketingcloudapis.com/v1/requestToken';
  5. var contentType = 'application/json';
  6. var payload = '{"clientId": "{cliendIdHere}","clientSecret": "ClientSecretHere"}';
  7. var result = HTTP.Post(url, contentType, payload); // HTTP POST call with parameters
  8. var resultCode = (result.StatusCode); // Returns the execution code, check here for more info https://developer.salesforce.com/docs/atlas.en-us.mc-apis.meta/mc-apis/error-handling.htm
  9. var obj = Platform.Function.ParseJSON(result.Response + ''); // Parsing the JSON Response to get the token
  10. var val = obj.accessToken;
  11. var BearerT = 'Bearer ' + val;
  12. // Debug info below
  13. Write(resultCode + '<br>');
  14. Write(BearerT + '<br>');
  15. if (resultCode === 200) {
  16. // Another API call here or something else
  17. } else {
  18. // block of code to be executed if the condition1 is false
  19. }
  20. } catch (ex) {
  21. Write("error message: " + ex);
  22. }
  23. </script>

:bulb: If you want to pass this token through another POST (withing the if 200 area for instance) you’ll be able to put it into your 2nd post header. Example:

  1. var jbHeaderNames = ["Authorization"];
  2. var jbHeaderValues = [BearerT];
  3. var jbResult = HTTP.Post(jbUrl, jbContentType, jbPayload, jbHeaderNames, jbHeaderValues);

SSJS Journey Builder API Entry Event

JOURNEY API ENTRY SOURCE

You will need to create first an API entry event. To do so :

  1. Go in Journey Builder and click on Entry Sources
  2. Click on New Event
  3. Give it a name and a description them copy the EVENT DEFINITION KEY (you will need it into the API call later on)
    journey api event
  4. Select the journey entry sendable data extension
  5. You can add a filter and then save.

EXAMPLE FIRE EVENT HTTP POST

In this example we will retrieve the token that we requested in the query above. Our API call will use the interaction/v1/events REST API.

  1. if (resultCode === 200) {
  2. var jbUrl = 'https://{YourCustomUri}.rest.marketingcloudapis.com/interaction/v1/events';
  3. var jbContentType = 'application/json';
  4. // Below we'll detail the subscriber key, the API event and in data we will detail the DE info to populate.
  5. var jbPayloadPart = {
  6. "ContactKey": ssjsVarSubscriberkey,
  7. "EventDefinitionKey": "{YourJbEntrySourceApiEventHere}",
  8. "EstablishContactKey": true,
  9. "Data": {
  10. "YourDeSubscriberkeyField": ssjsVarSubscriberkey,
  11. "YourDeEmailAddressField": ssjsVarEmailAddress,
  12. "YourDeFirstNameField": ssjsVarFirstName
  13. }
  14. };
  15. var jbPayload = Stringify(jbPayloadPart); // Creating a API readable JSON payload
  16. var jbHeaderNames = ["Authorization"];
  17. var jbHeaderValues = [BearerT]; // Token we retrieved previously
  18. var jbResult = HTTP.Post(jbUrl, jbContentType, jbPayload, jbHeaderNames, jbHeaderValues);
  19. var jbResultCode = (jbResult.StatusCode);
  20. var jbStry = (jbResult.Response + '');
  21. Write(jbResultCode + '<br>');
  22. } else {
  23. // block of code to be executed if the condition1 is false
  24. }

:bulb: You can retrieve the information to pass by retrieveing a URL parameter value, or form submission, or simply by using lookup functions for example. You can also do it with AMPscript as it uses the same functions.