Sign in

Assign licenses to user

documented

Assign one or more licenses to a user.

POST /accounts/{accountKey}/licenses/{licenseKeys}/users/{userKey}Adminno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.getgo.com/admin/rest/v1/accounts/{{$accountKey}}/licenses/{{$licenseKeys}}/users/{{$userKey}}" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"email": "{{$email}}", "firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "licenseKeys": "{{$licenseKeys}}", "sendInvite": {{$sendInvite}} }'
Assign licenses to user · GoTo · OpenIntegrations