POST /v1/teams
Create a new Team under your account. You need to send a POST request with the desired Team slug, and optionally the Team name.
Servers
- https://api.vercel.com
Request headers
Name | Type | Required | Description |
---|---|---|---|
Content-Type |
String | Yes |
The media type of the request body.
Default value: "application/json" |
Request body fields
Name | Type | Required | Description |
---|---|---|---|
name |
String | No |
The desired name for the Team. It will be generated from the provided slug if nothing is provided |
attribution |
Object | No |
Attribution information for the session or current page |
attribution.utm |
Object | No | |
attribution.utm.utmCampaign |
String | No |
UTM campaign |
attribution.utm.utmMedium |
String | No |
UTM medium |
attribution.utm.utmSource |
String | No |
UTM source |
attribution.utm.utmTerm |
String | No |
UTM term |
attribution.pageBeforeConversionPage |
String | No |
Referrer to the signup page |
attribution.sessionReferrer |
String | No |
Session referrer |
attribution.landingPage |
String | No |
Session landing page |
slug |
String | Yes |
The desired slug for the Team |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.