curl --request POST \
--url https://api.peere.network/v1/billing/recurring/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"customerId": "<string>",
"agreementPhrase": "<string>",
"amount": 123,
"currency": "<string>",
"frequency": "daily",
"interval": 123,
"startDate": "2023-11-07T05:31:56Z",
"endDate": "2023-11-07T05:31:56Z",
"maxBillings": 123,
"description": "<string>",
"metadata": {}
}
'