team
parameter.curl --location --request POST 'https://api.gigstack.io/v2/teams?team' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"address": {
"country": "Mexico",
"street": "Av. Reforma",
"zip": "11000",
"city": "Ciudad de México",
"state": "CDMX",
"exterior": "456",
"municipality": "Miguel Hidalgo",
"neighborhood": "Polanco"
},
"brand": {
"alias": "Empresa Innovadora",
"primary_color": "#2563eb",
"secondary_color": "#1d4ed8",
"logo": "https://example.com/logo.png"
},
"support_email": "soporte@empresa.com",
"support_phone": "+52 55 9876 5432",
"tax_id": "EIN850123ABC",
"tax_system": "601",
"generate_onboarding_url": true
}'
{
"message": "Team created successfully",
"data": {
"id": "team_1234567890",
"address": {
"country": "MEX",
"street": "Av. Insurgentes Sur 456",
"zip": "03100",
"city": "Ciudad de México",
"state": "CDMX"
},
"brand": {
"alias": "Mi Empresa",
"primary_color": "#007bff",
"secondary_color": "#6c757d"
},
"tax_id": "EMP800101ABC",
"tax_system": "601",
"support_email": "support@empresa.com",
"support_phone": "+52 55 1234 5678",
"owner": "user_1234567890",
"created_at": 1677651234,
"sat": {
"completed": true,
"connected_at": 1677651234,
"csd_expires_at": 1924991999
},
"members": [
{
"id": "user_1234567890",
"email": "member@empresa.com",
"role": "admin"
}
],
"integrations": {
"stripe": {
"completed": true,
"category": "payments"
}
},
"onboarding_url": "https://embeded.gigstack.pro/?sessionId=otpOnboarding_abc123&c=secure_token"
}
}