You need to sign in to do that
Don't have an account?
Http Body of apex outbound call line breaks issue
Hello I'm doing a rest post request to Trello to create a card however the http.sendbody is giving me issues basically I have to send a string value but need to ensure it can support line breaks and is in JSON.
is there a method I can use to present the format in JSON ? The format should be ["desc", "VAlue from custom object"]
Value from the custom object should use \n for line breaks
any help would be amazing
string body = '{"desc":'
+ Json.serialize(ticket.Trello_Card_Description__c)
+'}';
The json.serialize formats the line breaks correctly.