curl --request POST \
--url https://api.peere.network/v1/billing/intent-response \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"customerId": "<string>",
"entityId": "<string>",
"lookupPhrase": "<string>",
"customerDecision": "approve_once",
"spendingLimits": {
"single": 123,
"daily": 123,
"weekly": 123,
"monthly": 123
},
"blockMerchant": true,
"reference": "<string>"
}
'