Sign in

Assign licenses to user

documented

Assign one or more licenses to a user.

POST /accounts/{accountKey}/licenses/{licenseKeys}/users/{userKey}GoTo Connectno 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.goto.com/v1/accounts/{{$accountKey}}/licenses/{{$licenseKeys}}/users/{{$userKey}}" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"accountKey":"{{$accountKey}}","licenseKeys":"{{$licenseKeys}}","userKey":"{{$userKey}}","notes":"{{$notes}}"}'