Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

how to send a proof via api

Avatar

Level 2

how to send a proof via api/queryDef in adobe campaign classic

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hello @arnav21 

 

You can use this code to send proof via API.

 

Endpoint: Method - POST

https://INSTANCE_NAME.campaign.adobe.com/nl/jsp/soaprouter.jsp

 

Payload:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:nms:delivery">
   <soapenv:Header/>
   <soapenv:Body>
      <urn:LaunchFCP>
         <urn:sessiontoken>SESSION_TOKEN</urn:sessiontoken>
         <urn:lDeliveryId>DELIVERY_ID</urn:lDeliveryId>
      </urn:LaunchFCP>
   </soapenv:Body>
</soapenv:Envelope>

 

This will trigger proof to all the addresses added in the delivery template.

Manoj_Kumar__0-1676502545055.png

 

Reference:

LaunchFCP (adobe.com) 


     Manoj
     Find me on LinkedIn

View solution in original post

3 Replies

Avatar

Community Advisor

Hi @arnav21 ,

 

You can execute a created proof via API using "PrepareProof" API function.- Link

 

Br,

Shubham

Avatar

Level 2

how to specify for which delivery template we are sending proof? in it's parameter only

bStart is their and that have value 1

Avatar

Correct answer by
Community Advisor

Hello @arnav21 

 

You can use this code to send proof via API.

 

Endpoint: Method - POST

https://INSTANCE_NAME.campaign.adobe.com/nl/jsp/soaprouter.jsp

 

Payload:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:nms:delivery">
   <soapenv:Header/>
   <soapenv:Body>
      <urn:LaunchFCP>
         <urn:sessiontoken>SESSION_TOKEN</urn:sessiontoken>
         <urn:lDeliveryId>DELIVERY_ID</urn:lDeliveryId>
      </urn:LaunchFCP>
   </soapenv:Body>
</soapenv:Envelope>

 

This will trigger proof to all the addresses added in the delivery template.

Manoj_Kumar__0-1676502545055.png

 

Reference:

LaunchFCP (adobe.com) 


     Manoj
     Find me on LinkedIn