okta / okta-sdk-php

PHP SDK for the Okta API
Apache License 2.0
38 stars 71 forks source link

Group IT - Update Group #20

Closed bretterer closed 4 years ago

bretterer commented 7 years ago
  1. Create a new group → POST /api/v1/groups
    const newGroup = {
    profile: {
        name: 'Update Test Group'
    }
    };
  2. Update the group name and description → PUT /api/v1/groups/{{groupId}}
  3. Verify that group profile is updated by calling get on the group and verifying the profile → GET /api/v1/groups/{{groupId}}
  4. Delete the group → DELETE /api/v1/groups/{{groupId}}