team
parameter.curl --location --request PUT 'https://api.gigstack.io/v2/services/?team' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"description": "Updated consulting services - Premium package",
"sku": "CONS-001-PREMIUM",
"product_key": "80141503",
"unit_key": "ACT",
"unit_name": "Actividad",
"unit_price": 2500,
"taxes": [
{
"type": "IVA",
"rate": 0.16,
"factor": "Tasa",
"withholding": false,
"inclusive": false
}
]
}'
{
"message": "Service updated successfully",
"data": {
"id": "service_1234567890",
"description": "Professional consulting services",
"sku": "CONS-001",
"product_key": "80141503",
"unit_key": "E48",
"unit_name": "Servicio",
"unit_price": 1000,
"quantity": 1,
"taxes": [
{
"type": "IVA",
"rate": 0.16,
"factor": "Tasa",
"withholding": false
}
],
"team": "team_1234567890",
"created_at": 1677651234,
"from": "api"
}
}