Created
May 3, 2015 15:15
-
-
Save pasindud/c979427b56c3c20b6df8 to your computer and use it in GitHub Desktop.
Ideamart Delivery Report
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| header('Content-type: application/json'); | |
| echo json_encode(array("statusCode"=>"S1000","statusDetail"=>"Success")); | |
| $payload = file_get_contents("php://input"); | |
| $data = json_decode($payload,true); | |
| /* | |
| echo $data['destinationAddress']; | |
| echo $data['timeStamp']; | |
| echo $data['requestId']; | |
| echo $data['deliveryStatus']; | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment