Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Team ID to switch to
Response
JWT access token for authenticated requests
curl --request POST \
--url https://api.wirespeed.co/team/switch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"teamId": "<string>"
}'
{
"accessToken": "<string>"
}
curl --request POST \
--url https://api.wirespeed.co/team/switch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"teamId": "<string>"
}'
{
"accessToken": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Team ID to switch to
JWT access token for authenticated requests