function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sunny_SlpSunny_Slp 

Outbound Message- ACK URL

Hi Everyone,

 

When returning ACK for an outbound message, what URL should I use? (is it enterprise URL?) 

 

also, should I include notification ID in ACK? I'm not sure how SFDC identifies which message I acknowledged. 

 

Thanks for any help,

 

Sunny_Slp

Best Answer chosen by Admin (Salesforce Developers) 
SuperfellSuperfell

the ACK is on the http response, not a separarate call, and it just requires a true/false indication (it is ack'ing all the notifications in the request)

All Answers

SuperfellSuperfell

the ACK is on the http response, not a separarate call, and it just requires a true/false indication (it is ack'ing all the notifications in the request)

This was selected as the best answer
Sunny_SlpSunny_Slp

Thank you.

LarrinatorLarrinator

Simon, is it possible to make an ack call in a seperate message? If so, what items do I need from the request to make a good response? Thanks.

SuperfellSuperfell

No, it has to be on the http response.

osf_teamosf_team
Hi Superfell,
it is part of response header or body?
should I be doing something like HttpResponse.header('Ack', 'true') ?