gigstack API
  1. Teams
gigstack API
  • Clients
    • List clients
      GET
    • Create client
      POST
    • Get client
      GET
    • Update client
      PUT
    • Delete client
      DELETE
    • Validate client fiscal information
      POST
    • Get customer portal access token
      POST
    • Stamp pending receipts
      POST
  • Services
    • List services
      GET
    • Create service
      POST
    • Get service
      GET
    • Update service
      PUT
    • Delete service
      DELETE
  • Invoices
    • List income invoices
      GET
    • Create income invoice
      POST
    • Get income invoice
      GET
    • Get invoice files
      GET
    • Cancel invoice
      DELETE
  • Payments
    • List payments
    • Get payment
    • Cancel payment
    • Request payment
    • Register payment
    • Mark payment as paid
    • Refund payment
  • Teams
    • List teams
      GET
    • Create team
      POST
    • Get team
      GET
    • Update team
      PUT
    • Get team integrations
      GET
    • Add team member
      POST
    • Remove team member
      POST
    • Get team series
      GET
    • Create team series
      POST
    • Update team series
      PUT
    • Update team settings
      PUT
  • Users
    • List users
    • Create user
    • Get user
    • Update user
    • Reset user password
  1. Teams

Create team

Prod Env
https://api.gigstack.io/v2
Prod Env
https://api.gigstack.io/v2
POST
https://api.gigstack.io/v2
/teams
Create a new team.
gigstack Connect: Create teams using the team parameter.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.gigstack.io/v2/teams' \
--header 'Content-Type: application/json' \
--data-raw '{
    "address": {
        "country": "Mexico",
        "street": "Av. Insurgentes Sur",
        "zip": "03100",
        "city": "Ciudad de México",
        "state": "CDMX",
        "exterior": "123",
        "interior": "4B",
        "municipality": "Benito Juárez",
        "neighborhood": "Del Valle"
    },
    "brand": {
        "alias": "My Company",
        "primary_color": "#FF0000",
        "secondary_color": "#00FF00",
        "logo": "https://example.com/logo.png"
    },
    "support_email": "support@company.com",
    "support_phone": "+52 55 1234 5678",
    "tax_id": "ABC123456789",
    "tax_system": "601"
}'
Response Response Example
{
    "message": "Operation completed successfully",
    "data": {}
}

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Query Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Team created successfully
Body

Modified at 2025-08-19 00:01:14
Previous
List teams
Next
Get team
Built with