curl --location 'https://app.mgpanel.co/api/invoices' \
--header 'X-Account-Nick: {{ACCOUNT_NICK}}' \
--header 'Authorization: Bearer {{API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"client": {
"name": "Juan Perez",
"email": "juan@test.com"
},
"items": [
{
"description": "Servicio",
"quantity": 1,
"price": 100
}
]
}'{}