curl --request PATCH \
--url https://api.centralcart.com.br/v1/app/package/{package-id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"category_id": 123,
"enabled": true,
"price": 123,
"expiry_days": 123,
"type": "<string>",
"inventory_amount": 123,
"per_user_limit": true,
"slug": "<string>",
"image": {},
"icon": {},
"compare_at_price": {},
"parent_id": {},
"min_amount": {},
"commands": [
{
"type": "<string>",
"command": "<string>",
"game_server_id": 123,
"offline_execute": true,
"schedule": {},
"execute_once": true
}
],
"discord_actions": [
{
"type": "<string>",
"action": "<string>",
"parameters": {
"role_id": {},
"channel_id": {},
"message": {}
}
}
],
"variables": {},
"content": {
"title": {},
"value": "<string>",
"is_plain": true,
"send_email": true
},
"license_keys": {},
"license_key_format": {
"separator": "<string>",
"fields": [
"<string>"
]
},
"chat_delivery": {
"enabled": true,
"initial_message": {}
}
}
'