POST
/
teams
/
{team}
/
invites
curl --request POST \
  --url https://api.altostrat.io/teams/{team}/invites \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "jsmith@example.com"
}'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Standard OAuth2 flow for user authentication. Use Authorization Code Grant or Implicit Grant. JWT Bearer tokens obtained are used for subsequent requests.

Path Parameters

team
string
required

UUID of the Team.

Body

application/json

Response

202
application/json

Invitation sent successfully.

The response is of type object.