curl --request PUT \
--url https://api.wirespeed.co/team \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"ownerEmail": "<string>",
"domain": "<string>",
"ownerFirstName": "<string>",
"ownerLastName": "<string>",
"faviconUrl": "<string>",
"demo": false,
"autoSubscribeServiceProviderUsers": true,
"sku": "identity",
"skuStartDate": "<string>",
"skuEndDate": "<string>",
"isTrial": false,
"address": {
"streetLine1": "<string>",
"city": "<string>",
"administrativeArea": "<string>",
"postalCode": "<string>",
"country": "<string>",
"streetLine2": "<string>",
"subAdministrativeArea": "<string>"
}
}
'{
"data": [
{
"id": "<string>",
"intercomId": "<string>",
"createdAt": "<string>",
"displayName": "<string>",
"email": "<string>",
"locked": true,
"isServiceAccount": true,
"activeTeamId": "<string>",
"parentTeamId": "<string>",
"completedOnboarding": true,
"teamId": "<string>",
"autoSubscribeToNotifications": true,
"role": "ADMIN",
"isExternal": true,
"internalRole": "ADMIN",
"firstName": "<string>",
"lastName": "<string>",
"phoneNumber": "<string>"
}
],
"totalCount": 123
}curl --request PUT \
--url https://api.wirespeed.co/team \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"ownerEmail": "<string>",
"domain": "<string>",
"ownerFirstName": "<string>",
"ownerLastName": "<string>",
"faviconUrl": "<string>",
"demo": false,
"autoSubscribeServiceProviderUsers": true,
"sku": "identity",
"skuStartDate": "<string>",
"skuEndDate": "<string>",
"isTrial": false,
"address": {
"streetLine1": "<string>",
"city": "<string>",
"administrativeArea": "<string>",
"postalCode": "<string>",
"country": "<string>",
"streetLine2": "<string>",
"subAdministrativeArea": "<string>"
}
}
'{
"data": [
{
"id": "<string>",
"intercomId": "<string>",
"createdAt": "<string>",
"displayName": "<string>",
"email": "<string>",
"locked": true,
"isServiceAccount": true,
"activeTeamId": "<string>",
"parentTeamId": "<string>",
"completedOnboarding": true,
"teamId": "<string>",
"autoSubscribeToNotifications": true,
"role": "ADMIN",
"isExternal": true,
"internalRole": "ADMIN",
"firstName": "<string>",
"lastName": "<string>",
"phoneNumber": "<string>"
}
],
"totalCount": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Name of the team (1-512 characters)
Email address of the team owner
Domain URL for the team
First name of the team owner (1-512 characters)
Last name of the team owner (1-512 characters)
Favicon URL for the team
Whether this is a demo team
Whether to auto-subscribe the service provider users to the new team
Subscription SKU tier for the team
identity, mdr, unlimited Contract/subscription start date (ISO string)
Contract/subscription end date (ISO string)
Whether this team is a proof-of-value trial
Address of the organization
Show child attributes