curl --request POST \
--url https://api-beta.pepay.io/api/commerce/merchant/carts \
--header 'Content-Type: application/json' \
--header 'x-commerce-api-key: <api-key>' \
--data '
{
"wallet_address": "<string>",
"wallet_network": "ethereum",
"customer_id": "<string>",
"item": {
"productId": "<string>",
"retailer": "<string>",
"quantity": 123,
"price": 123,
"title": "<string>",
"imageUrl": "<string>"
}
}
'