Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit is happening now. Discover what's next in customer experience.
SOLVED

Fetch Mbox response from API

Avatar

Level 2

I want to fetch the mbox response via API. 

Could anyone help me or share the link for the same which will help me

 

Thanks 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @divyas46613305  You can get the response using delivery API mentioned in https://developers.adobetarget.com/api/delivery-api/#section/Getting-Started

 

 

POST > https://accentureplc.tt.omtrdc.net/rest/v1/delivery?client=accentureplc&sessionId=737adcb6a14043309f...

Body as raw > json 

{
      "context": {
        "channel""web",
        "browser" : {
          "host" : "production"
        },
        "address" : {
          "url" : "http://somewebsite.test.com/"
        },
        "screen" : {
          "width" : 1200,
          "height"1400
        }
      },
      "property" : {
        "token""f6fb2018-92d3-f3f5-36ee-40e7affb1804"
      },
        "execute": {
        "mboxes" : [
          {
            "name" : "customMbox",
            "index" : 1
          }
        ]
      }
}
 
 

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Hi @divyas46613305  You can get the response using delivery API mentioned in https://developers.adobetarget.com/api/delivery-api/#section/Getting-Started

 

 

POST > https://accentureplc.tt.omtrdc.net/rest/v1/delivery?client=accentureplc&sessionId=737adcb6a14043309f...

Body as raw > json 

{
      "context": {
        "channel""web",
        "browser" : {
          "host" : "production"
        },
        "address" : {
          "url" : "http://somewebsite.test.com/"
        },
        "screen" : {
          "width" : 1200,
          "height"1400
        }
      },
      "property" : {
        "token""f6fb2018-92d3-f3f5-36ee-40e7affb1804"
      },
        "execute": {
        "mboxes" : [
          {
            "name" : "customMbox",
            "index" : 1
          }
        ]
      }
}