Expand my Community achievements bar.

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
          }
        ]
      }
}