Created
September 27, 2024 16:35
-
-
Save matheus-santos/31e432483b910f6c7d095da050c8fa39 to your computer and use it in GitHub Desktop.
CrediPay
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 --location 'https://api.pre.credix.finance/v1/orders' \ | |
--header 'X-CREDIPAY-API-KEY: OTAyNjUyNmUtMGNmZi00NjdmLTg2YzYtY2YxNDc5MjhlMTIyOml3V093ME52V2dUdVp6eUd5SWdqKysybXFGNHFRUXZCUWZOcnRIZnVtZHM9' \ | |
--header 'Content-Type: application/json' \ | |
--data '{ | |
"externalId": "REF-10230456", | |
"subtotalAmountCents": 1020000, | |
"taxAmountCents": 81600, | |
"shippingCostCents": 5000, | |
"shippingLocation": { | |
"address1": "Rua da Consolação, 930", | |
"address2": "Apto 101", | |
"city": "São Paulo", | |
"region": "São Paulo", | |
"postalCode": "01302000", | |
"country": "Brazil" | |
}, | |
"estimatedDeliveryDateUTC": "2024-02-05T00:00:00Z", | |
"installments": [ | |
{ | |
"maturityDate": "2024-02-10T00:00:00Z", | |
"faceValueCents": 1020000 | |
} | |
], | |
"buyerTaxId": "26900161000125", | |
"sellerTaxId": "37154724000108", | |
"items": [ | |
{ | |
"productId": "7891910000197", | |
"productName": "Cerveja Skol 350ml", | |
"quantity": 1000, | |
"unitPriceCents": 1020 | |
} | |
] | |
}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment