curl --request POST \
--url https://api.sandbox.nevermined.dev/api/v1/protocol/plans \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Pro Plan",
"description": "500 requests per month",
"priceConfig": {
"priceType": "FIXED_PRICE",
"tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"amounts": [
50000000
],
"receivers": [
"0xYourWalletAddress"
]
},
"creditsConfig": {
"creditsType": "FIXED",
"amount": 500,
"minAmount": 1
}
}
'