Created
April 24, 2022 13:24
-
-
Save zalun/50a53ad11158eb1f0dd23ccb827b4f3b to your computer and use it in GitHub Desktop.
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
curl -X 'POST' \ | |
-H 'accept: application/json' \ | |
-H 'Content-Type: application/json' \ | |
-d '{ | |
"order": { | |
"orderId": "MB45CC6D2V220424GUEST000P01", | |
"extOrderId": "600f0125-6595-4633-a701-f8a2f480d70e", | |
"orderCreateDate": "2022-04-24T11:20:59.521+02:00", | |
"notifyUrl": "https://webhook.site/5e25fb1d-a0cb-47ef-b8f7-f71ca7f7d5cc", | |
"customerIp": "127.0.0.1", | |
"merchantPosId": "300746", | |
"validityTime": "86400", | |
"description": "test", | |
"currencyCode": "PLN", | |
"totalAmount": "1000", | |
"buyer": { | |
"customerId": "guest", | |
"email": "[email protected]", | |
"firstName": "John", | |
"lastName": "Doe" | |
}, | |
"products": [{ | |
"id": 1, | |
"name": "Test product", | |
"quantity": 1, | |
"unitPrice": 1000 | |
}], | |
"payMethod": { | |
"type": "CARD_TOKEN" | |
}, | |
"status": "COMPLETED" | |
}, | |
"localReceiptDateTime": "2022-04-24T11:21:36.265+02:00", | |
"properties": [ | |
{ | |
"name": "PAYMENT_ID", | |
"value": "5003707594" | |
} | |
] | |
}' http://localhost:1337/payu/notify |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment