Create a team
Develop Env
https://api.gigstack.io/v2
Develop Env
https://api.gigstack.io/v2
POST
https://api.gigstack.io/v2
Connect
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.gigstack.io/v2/connect/teams' \
--header 'Content-Type: application/json' \
--header 'Authorization;' \
--data-raw '{
"members": [
"string"
],
"alias": "string",
"primaryColor": "string",
"logoUrl": "http://example.com",
"legalName": "string",
"taxId": "string",
"address": {
"street": "string",
"city": "string",
"state": "string",
"zip": "string",
"country": "string"
},
"contactEmails": [
"user@example.com"
],
"supportEmail": "user@example.com",
"supportPhone": "string",
"taxSystem": "string",
"metadata": {}
}'
Response Response Example
200 - Example 1
{
"data": {
"id": "string",
"alias": "string",
"legalName": "string",
"logo": "string",
"primaryColor": "string",
"setupComplete": true,
"members": [
{
"id": "string",
"email": "user@example.com",
"role": "string",
"isAdmin": true,
"isSuperAdmin": true,
"status": "string",
"permissions": {
"invoices": "string",
"payments": "string",
"expenses": "string",
"services": "string"
}
}
],
"supportEmail": "user@example.com",
"address": {
"street": "string",
"city": "string",
"state": "string",
"zip": "string",
"country": "string"
},
"integrations": {
"stripe": {
"completed": true,
"hasKeys": true
},
"facturapi": {
"completed": true,
"hasKeys": true
},
"sat": {
"completed": true,
"provider": "string",
"hasCertificate": true
}
},
"invoicesCreated": 0,
"paymentsCreated": 0,
"receiptsCreated": 0,
"onboardingUrl": "http://example.com"
},
"message": "string",
"next": "string",
"totalResults": 0,
"hasMore": true
}
Request
Body Params application/json
Responses
Modified at 2025-06-16 03:36:47