79642287

Date: 2025-05-28 13:15:39
Score: 0.5
Natty:
Report link

Here's an intuitive solution (to add another option to Oleksandr's answer):

$payload = json_decode($result['Payload'], true);

and to get, for example, the body, you have to decode the JSON string again:

$body = json_decode($payload['body'], true);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ksyrium