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

The 4th edition of the Campaign Community Lens newsletter is out now!
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) 

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)