POST
/
api
/
v1
/
memberships
curl --request POST \
  --url https://vision.pingintel.com/api/v1/memberships \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "company_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "division_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "team_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "user_id": 123,
  "membership_type": "member"
}'
{
  "company_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "division_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "team_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "user_id": 123,
  "user_email": "<string>",
  "user_first_name": "<string>",
  "user_last_name": "<string>",
  "membership_type": "member"
}

Authorizations

Authorization
string
header
required

Supports Token-prefixed API keys and Bearer-prefixed JWT-based authentication.

Body

Response

201 - application/json

The response is of type object.