Skip to main content
POST
/
api
/
v1
/
me
/
temporary-membership
Add Temporary Membership
curl --request POST \
  --url https://vision.pingintel.com/api/v1/me/temporary-membership \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "team_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "division_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "company_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "membership_type": "member",
  "user_email": "jsmith@example.com"
}
'

Authorizations

Authorization
string
header
required

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

Body

team_uuid
string<uuid>

UUID of the team to add membership for. Provide exactly one of team_uuid, division_uuid, or company_uuid.

division_uuid
string<uuid>

UUID of the division to add membership for.

company_uuid
string<uuid>

UUID of the company to add membership for.

membership_type
enum<string>

Membership type. Defaults to 'member'.

  • member - member
  • admin - admin
  • owner - owner
Available options:
member,
admin,
owner
user_email
string<email>

Email of the user to grant membership to. Defaults to the authenticated user.

Response

200

No response body