curl --request PUT \
--url https://api.wirespeed.com/team/invite \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"role": "ADMIN"
}'
{
"message": "<string>",
"statusCode": 123
}
curl --request PUT \
--url https://api.wirespeed.com/team/invite \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"role": "ADMIN"
}'
{
"message": "<string>",
"statusCode": 123
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.